Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(429)

Side by Side Diff: content/renderer/render_frame_impl.h

Issue 2804843005: Implement the infrastructure of creating WorkerFetchContext in worker global scope. (Closed)
Patch Set: s/WebScheduler.h/web_scheduler.h/ Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « content/renderer/BUILD.gn ('k') | content/renderer/render_frame_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ 5 #ifndef CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
6 #define CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ 6 #define CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
(...skipping 483 matching lines...) Expand 10 before | Expand all | Expand 10 after
494 blink::WebMediaPlayer* CreateMediaPlayer( 494 blink::WebMediaPlayer* CreateMediaPlayer(
495 const blink::WebMediaPlayerSource& source, 495 const blink::WebMediaPlayerSource& source,
496 blink::WebMediaPlayerClient* client, 496 blink::WebMediaPlayerClient* client,
497 blink::WebMediaPlayerEncryptedMediaClient* encrypted_client, 497 blink::WebMediaPlayerEncryptedMediaClient* encrypted_client,
498 blink::WebContentDecryptionModule* initial_cdm, 498 blink::WebContentDecryptionModule* initial_cdm,
499 const blink::WebString& sink_id) override; 499 const blink::WebString& sink_id) override;
500 blink::WebApplicationCacheHost* CreateApplicationCacheHost( 500 blink::WebApplicationCacheHost* CreateApplicationCacheHost(
501 blink::WebApplicationCacheHostClient* client) override; 501 blink::WebApplicationCacheHostClient* client) override;
502 blink::WebWorkerContentSettingsClientProxy* 502 blink::WebWorkerContentSettingsClientProxy*
503 CreateWorkerContentSettingsClientProxy() override; 503 CreateWorkerContentSettingsClientProxy() override;
504 std::unique_ptr<blink::WebWorkerFetchContext> CreateWorkerFetchContext()
505 override;
504 blink::WebExternalPopupMenu* CreateExternalPopupMenu( 506 blink::WebExternalPopupMenu* CreateExternalPopupMenu(
505 const blink::WebPopupMenuInfo& popup_menu_info, 507 const blink::WebPopupMenuInfo& popup_menu_info,
506 blink::WebExternalPopupMenuClient* popup_menu_client) override; 508 blink::WebExternalPopupMenuClient* popup_menu_client) override;
507 blink::WebCookieJar* CookieJar() override; 509 blink::WebCookieJar* CookieJar() override;
508 blink::BlameContext* GetFrameBlameContext() override; 510 blink::BlameContext* GetFrameBlameContext() override;
509 blink::WebServiceWorkerProvider* CreateServiceWorkerProvider() override; 511 blink::WebServiceWorkerProvider* CreateServiceWorkerProvider() override;
510 void DidAccessInitialDocument() override; 512 void DidAccessInitialDocument() override;
511 blink::WebLocalFrame* CreateChildFrame( 513 blink::WebLocalFrame* CreateChildFrame(
512 blink::WebLocalFrame* parent, 514 blink::WebLocalFrame* parent,
513 blink::WebTreeScopeType scope, 515 blink::WebTreeScopeType scope,
(...skipping 913 matching lines...) Expand 10 before | Expand all | Expand 10 after
1427 std::unique_ptr<PendingNavigationInfo> pending_navigation_info_; 1429 std::unique_ptr<PendingNavigationInfo> pending_navigation_info_;
1428 1430
1429 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; 1431 base::WeakPtrFactory<RenderFrameImpl> weak_factory_;
1430 1432
1431 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); 1433 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl);
1432 }; 1434 };
1433 1435
1434 } // namespace content 1436 } // namespace content
1435 1437
1436 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ 1438 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
OLDNEW
« no previous file with comments | « content/renderer/BUILD.gn ('k') | content/renderer/render_frame_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698