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

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

Issue 2701753003: [WIP] off-main-thread loading
Patch Set: small fix Created 3 years, 8 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 144 matching lines...) Expand 10 before | Expand all | Expand 10 after
155 class RendererPpapiHost; 155 class RendererPpapiHost;
156 class RenderFrameObserver; 156 class RenderFrameObserver;
157 class RenderViewImpl; 157 class RenderViewImpl;
158 class RenderWidget; 158 class RenderWidget;
159 class RenderWidgetFullscreenPepper; 159 class RenderWidgetFullscreenPepper;
160 class ResourceRequestBodyImpl; 160 class ResourceRequestBodyImpl;
161 class ScreenOrientationDispatcher; 161 class ScreenOrientationDispatcher;
162 class SharedWorkerRepository; 162 class SharedWorkerRepository;
163 class UserMediaClientImpl; 163 class UserMediaClientImpl;
164 struct CSPViolationParams; 164 struct CSPViolationParams;
165 class WebWorkerFetchContextInfo;
165 struct CommonNavigationParams; 166 struct CommonNavigationParams;
166 struct CustomContextMenuContext; 167 struct CustomContextMenuContext;
167 struct FileChooserFileInfo; 168 struct FileChooserFileInfo;
168 struct FileChooserParams; 169 struct FileChooserParams;
169 struct FrameOwnerProperties; 170 struct FrameOwnerProperties;
170 struct FrameReplicationState; 171 struct FrameReplicationState;
171 struct NavigationParams; 172 struct NavigationParams;
172 struct RequestNavigationParams; 173 struct RequestNavigationParams;
173 struct ResourceResponseHead; 174 struct ResourceResponseHead;
174 struct ScreenInfo; 175 struct ScreenInfo;
(...skipping 495 matching lines...) Expand 10 before | Expand all | Expand 10 after
670 void registerProtocolHandler(const blink::WebString& scheme, 671 void registerProtocolHandler(const blink::WebString& scheme,
671 const blink::WebURL& url, 672 const blink::WebURL& url,
672 const blink::WebString& title) override; 673 const blink::WebString& title) override;
673 void unregisterProtocolHandler(const blink::WebString& scheme, 674 void unregisterProtocolHandler(const blink::WebString& scheme,
674 const blink::WebURL& url) override; 675 const blink::WebURL& url) override;
675 void checkIfAudioSinkExistsAndIsAuthorized( 676 void checkIfAudioSinkExistsAndIsAuthorized(
676 const blink::WebString& sink_id, 677 const blink::WebString& sink_id,
677 const blink::WebSecurityOrigin& security_origin, 678 const blink::WebSecurityOrigin& security_origin,
678 blink::WebSetSinkIdCallbacks* web_callbacks) override; 679 blink::WebSetSinkIdCallbacks* web_callbacks) override;
679 blink::WebPageVisibilityState visibilityState() const override; 680 blink::WebPageVisibilityState visibilityState() const override;
681 void propagateAuxiliaryFetchContext(
682 blink::WebWorkerFetchContextInfo*) const override;
680 683
681 // WebFrameSerializerClient implementation: 684 // WebFrameSerializerClient implementation:
682 void didSerializeDataForFrame( 685 void didSerializeDataForFrame(
683 const blink::WebCString& data, 686 const blink::WebCString& data,
684 blink::WebFrameSerializerClient::FrameSerializationStatus status) 687 blink::WebFrameSerializerClient::FrameSerializationStatus status)
685 override; 688 override;
686 689
687 // Binds to the site engagement service in the browser. 690 // Binds to the site engagement service in the browser.
688 void BindEngagement(blink::mojom::EngagementClientAssociatedRequest request); 691 void BindEngagement(blink::mojom::EngagementClientAssociatedRequest request);
689 692
(...skipping 733 matching lines...) Expand 10 before | Expand all | Expand 10 after
1423 std::unique_ptr<PendingNavigationInfo> pending_navigation_info_; 1426 std::unique_ptr<PendingNavigationInfo> pending_navigation_info_;
1424 1427
1425 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; 1428 base::WeakPtrFactory<RenderFrameImpl> weak_factory_;
1426 1429
1427 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); 1430 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl);
1428 }; 1431 };
1429 1432
1430 } // namespace content 1433 } // namespace content
1431 1434
1432 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ 1435 #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