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

Unified Diff: content/browser/frame_host/render_frame_host_impl.h

Issue 2156883002: Use content::FrameOwnerProperties instead of blink::WebFrameOwnerProperties in content/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@permission-delegation-frame-owner-properties
Patch Set: Use this everywhere 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/browser/frame_host/render_frame_host_impl.h
diff --git a/content/browser/frame_host/render_frame_host_impl.h b/content/browser/frame_host/render_frame_host_impl.h
index 68daf9833cc79d4c7ce719034065fb3b6fe390a8..b765849e51f864a2b6d9b30703679a1df0ce9125 100644
--- a/content/browser/frame_host/render_frame_host_impl.h
+++ b/content/browser/frame_host/render_frame_host_impl.h
@@ -65,10 +65,6 @@ class ListValue;
}
namespace blink {
-struct WebFrameOwnerProperties;
-}
-
-namespace blink {
namespace mojom {
class WebBluetoothService;
}
@@ -98,9 +94,9 @@ class WebBluetoothServiceImpl;
struct ContentSecurityPolicyHeader;
struct ContextMenuParams;
struct FileChooserParams;
+struct FileChooserParams;
alexmos 2016/07/19 00:15:56 Why are there two of these? Did you mean FrameOwn
raymes 2016/07/19 05:53:09 There were already 2 in the list and when I sorted
struct FrameOwnerProperties;
struct GlobalRequestID;
-struct FileChooserParams;
struct Referrer;
struct ResourceResponse;
@@ -224,13 +220,12 @@ class CONTENT_EXPORT RenderFrameHostImpl
void Init();
int routing_id() const { return routing_id_; }
- void OnCreateChildFrame(
- int new_routing_id,
- blink::WebTreeScopeType scope,
- const std::string& frame_name,
- const std::string& frame_unique_name,
- blink::WebSandboxFlags sandbox_flags,
- const blink::WebFrameOwnerProperties& frame_owner_properties);
+ void OnCreateChildFrame(int new_routing_id,
+ blink::WebTreeScopeType scope,
+ const std::string& frame_name,
+ const std::string& frame_unique_name,
+ blink::WebSandboxFlags sandbox_flags,
+ const FrameOwnerProperties& frame_owner_properties);
RenderViewHostImpl* render_view_host() { return render_view_host_; }
RenderFrameHostDelegate* delegate() { return delegate_; }

Powered by Google App Engine
This is Rietveld 408576698