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

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

Issue 1846143003: Propogate loading behavior data from Blink to content/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Change null enum name Created 4 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
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 21 matching lines...) Expand all
32 #include "content/renderer/frame_blame_context.h" 32 #include "content/renderer/frame_blame_context.h"
33 #include "content/renderer/render_frame_proxy.h" 33 #include "content/renderer/render_frame_proxy.h"
34 #include "content/renderer/renderer_webcookiejar_impl.h" 34 #include "content/renderer/renderer_webcookiejar_impl.h"
35 #include "ipc/ipc_message.h" 35 #include "ipc/ipc_message.h"
36 #include "ipc/ipc_platform_file.h" 36 #include "ipc/ipc_platform_file.h"
37 #include "media/blink/webmediaplayer_delegate.h" 37 #include "media/blink/webmediaplayer_delegate.h"
38 #include "media/blink/webmediaplayer_params.h" 38 #include "media/blink/webmediaplayer_params.h"
39 #include "mojo/shell/public/interfaces/connector.mojom.h" 39 #include "mojo/shell/public/interfaces/connector.mojom.h"
40 #include "mojo/shell/public/interfaces/interface_provider.mojom.h" 40 #include "mojo/shell/public/interfaces/interface_provider.mojom.h"
41 #include "third_party/WebKit/public/platform/WebFocusType.h" 41 #include "third_party/WebKit/public/platform/WebFocusType.h"
42 #include "third_party/WebKit/public/platform/WebLoadingData.h"
42 #include "third_party/WebKit/public/platform/WebMediaPlayer.h" 43 #include "third_party/WebKit/public/platform/WebMediaPlayer.h"
43 #include "third_party/WebKit/public/platform/modules/app_banner/WebAppBannerClie nt.h" 44 #include "third_party/WebKit/public/platform/modules/app_banner/WebAppBannerClie nt.h"
44 #include "third_party/WebKit/public/web/WebAXObject.h" 45 #include "third_party/WebKit/public/web/WebAXObject.h"
45 #include "third_party/WebKit/public/web/WebDataSource.h" 46 #include "third_party/WebKit/public/web/WebDataSource.h"
46 #include "third_party/WebKit/public/web/WebFrameClient.h" 47 #include "third_party/WebKit/public/web/WebFrameClient.h"
47 #include "third_party/WebKit/public/web/WebFrameLoadType.h" 48 #include "third_party/WebKit/public/web/WebFrameLoadType.h"
48 #include "third_party/WebKit/public/web/WebFrameOwnerProperties.h" 49 #include "third_party/WebKit/public/web/WebFrameOwnerProperties.h"
49 #include "third_party/WebKit/public/web/WebFrameSerializerClient.h" 50 #include "third_party/WebKit/public/web/WebFrameSerializerClient.h"
50 #include "third_party/WebKit/public/web/WebHistoryCommitType.h" 51 #include "third_party/WebKit/public/web/WebHistoryCommitType.h"
51 #include "third_party/WebKit/public/web/WebMeaningfulLayout.h" 52 #include "third_party/WebKit/public/web/WebMeaningfulLayout.h"
(...skipping 491 matching lines...) Expand 10 before | Expand all | Expand 10 after
543 const blink::WebURL& url, 544 const blink::WebURL& url,
544 const blink::WebCString& security_info, 545 const blink::WebCString& security_info,
545 const blink::WebURL& main_resource_url, 546 const blink::WebURL& main_resource_url,
546 const blink::WebCString& main_resource_security_info) override; 547 const blink::WebCString& main_resource_security_info) override;
547 void didRunContentWithCertificateErrors( 548 void didRunContentWithCertificateErrors(
548 const blink::WebURL& url, 549 const blink::WebURL& url,
549 const blink::WebCString& security_info, 550 const blink::WebCString& security_info,
550 const blink::WebURL& main_resource_url, 551 const blink::WebURL& main_resource_url,
551 const blink::WebCString& main_resource_security_info) override; 552 const blink::WebCString& main_resource_security_info) override;
552 void didChangePerformanceTiming() override; 553 void didChangePerformanceTiming() override;
554 void didObserveLoadingBehavior(blink::WebLoadingData data) override;
553 void didCreateScriptContext(blink::WebLocalFrame* frame, 555 void didCreateScriptContext(blink::WebLocalFrame* frame,
554 v8::Local<v8::Context> context, 556 v8::Local<v8::Context> context,
555 int extension_group, 557 int extension_group,
556 int world_id) override; 558 int world_id) override;
557 void willReleaseScriptContext(blink::WebLocalFrame* frame, 559 void willReleaseScriptContext(blink::WebLocalFrame* frame,
558 v8::Local<v8::Context> context, 560 v8::Local<v8::Context> context,
559 int world_id) override; 561 int world_id) override;
560 void didChangeScrollOffset(blink::WebLocalFrame* frame) override; 562 void didChangeScrollOffset(blink::WebLocalFrame* frame) override;
561 void willInsertBody(blink::WebLocalFrame* frame) override; 563 void willInsertBody(blink::WebLocalFrame* frame) override;
562 void reportFindInPageMatchCount(int request_id, 564 void reportFindInPageMatchCount(int request_id,
(...skipping 647 matching lines...) Expand 10 before | Expand all | Expand 10 after
1210 FrameBlameContext* blame_context_; // Not owned. 1212 FrameBlameContext* blame_context_; // Not owned.
1211 1213
1212 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; 1214 base::WeakPtrFactory<RenderFrameImpl> weak_factory_;
1213 1215
1214 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); 1216 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl);
1215 }; 1217 };
1216 1218
1217 } // namespace content 1219 } // namespace content
1218 1220
1219 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ 1221 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698