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

Unified Diff: content/renderer/render_frame_impl.h

Issue 2146803004: Create a content::FrameOwnerProperties struct for IPC transport of WebFrameOwnerProperties (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Transport Created 4 years, 5 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 side-by-side diff with in-line comments
Download patch
Index: content/renderer/render_frame_impl.h
diff --git a/content/renderer/render_frame_impl.h b/content/renderer/render_frame_impl.h
index cf19ac8ad31f1ab4836ea87dba6d70a4e91bcc9b..29567d8c5d659c603cc9934e805d30b1b2b365a5 100644
--- a/content/renderer/render_frame_impl.h
+++ b/content/renderer/render_frame_impl.h
@@ -50,7 +50,6 @@
#include "third_party/WebKit/public/web/WebDataSource.h"
#include "third_party/WebKit/public/web/WebFrameClient.h"
#include "third_party/WebKit/public/web/WebFrameLoadType.h"
-#include "third_party/WebKit/public/web/WebFrameOwnerProperties.h"
#include "third_party/WebKit/public/web/WebFrameSerializerClient.h"
#include "third_party/WebKit/public/web/WebHistoryCommitType.h"
#include "third_party/WebKit/public/web/WebMeaningfulLayout.h"
@@ -81,8 +80,8 @@ class SyncMessage;
}
namespace blink {
-class WebMouseEvent;
class WebContentDecryptionModule;
+class WebMouseEvent;
class WebPresentationClient;
class WebPushClient;
class WebSecurityOrigin;
@@ -91,6 +90,7 @@ struct WebCompositionUnderline;
struct WebContextMenuData;
struct WebCursorInfo;
struct WebFindOptions;
+struct WebFrameOwnerProperties;
struct WebScreenInfo;
}
@@ -158,6 +158,7 @@ struct CommonNavigationParams;
struct CustomContextMenuContext;
struct FileChooserFileInfo;
struct FileChooserParams;
+struct FrameOwnerProperties;
struct FrameReplicationState;
struct NavigationParams;
struct RequestNavigationParams;
@@ -820,7 +821,7 @@ class CONTENT_EXPORT RenderFrameImpl
void OnUpdateOpener(int opener_routing_id);
void OnDidUpdateSandboxFlags(blink::WebSandboxFlags flags);
void OnSetFrameOwnerProperties(
- const blink::WebFrameOwnerProperties& frame_owner_properties);
+ const FrameOwnerProperties& frame_owner_properties);
void OnAdvanceFocus(blink::WebFocusType type, int32_t source_routing_id);
void OnSetFocusedFrame();
void OnTextTrackSettingsChanged(

Powered by Google App Engine
This is Rietveld 408576698