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_; } |