diff options
Diffstat (limited to 'content/browser/renderer_host/render_view_host_impl.h')
-rw-r--r-- | content/browser/renderer_host/render_view_host_impl.h | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/content/browser/renderer_host/render_view_host_impl.h b/content/browser/renderer_host/render_view_host_impl.h index de8e0d0..f185fad 100644 --- a/content/browser/renderer_host/render_view_host_impl.h +++ b/content/browser/renderer_host/render_view_host_impl.h @@ -418,9 +418,6 @@ class CONTENT_EXPORT RenderViewHostImpl int64 main_frame_id() const { return main_frame_id_; } - int main_frame_routing_id() const { - return main_frame_routing_id_; - } // Set the opener to null in the renderer process. void DisownOpener(); @@ -457,6 +454,11 @@ class CONTENT_EXPORT RenderViewHostImpl return is_waiting_for_unload_ack_; } + // Returns whether the given URL is allowed to commit in the current process. + // This is a more conservative check than RenderProcessHost::FilterURL, since + // it will be used to kill processes that commit unauthorized URLs. + bool CanCommitURL(const GURL& url); + // Update the FrameTree to use this RenderViewHost's main frame // RenderFrameHost. Called when the RenderViewHost is committed. // @@ -585,10 +587,6 @@ class CONTENT_EXPORT RenderViewHostImpl #endif private: - // TODO(nasko): Temporarily friend RenderFrameHostImpl, so we don't duplicate - // utility functions and state needed in both classes, while we move frame - // specific code away from this class. - friend class RenderFrameHostImpl; friend class TestRenderViewHost; FRIEND_TEST_ALL_PREFIXES(RenderViewHostTest, BasicRenderFrameHost); FRIEND_TEST_ALL_PREFIXES(RenderViewHostTest, RoutingIdSane); |