Commit d3baa13f authored by danakj's avatar danakj Committed by Commit Bot

Move references to content/browser/frame_host/

These (non-include) references should now point to
content/browser/renderer_host where the code has moved to.

TBR=avi@chromium.org, arthursonzogni@chromium.org

Bug: 1091083
Change-Id: I8d0ace9fab6c04e3b498eee8d442ff6bd52fd7a5
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2402185Reviewed-by: default avatardanakj <danakj@chromium.org>
Reviewed-by: default avatarNasko Oskov <nasko@chromium.org>
Reviewed-by: default avatarAvi Drissman <avi@chromium.org>
Commit-Queue: danakj <danakj@chromium.org>
Auto-Submit: danakj <danakj@chromium.org>
Cr-Commit-Position: refs/heads/master@{#805760}
parent 21fbb40f
...@@ -257,7 +257,7 @@ ...@@ -257,7 +257,7 @@
'device/battery/', 'device/battery/',
}, },
'bfcache': { 'bfcache': {
'filepath': 'content/browser/frame_host/back_forward_cache.*|'\ 'filepath': 'content/browser/renderer_host/back_forward_cache.*|'\
'content/browser/back_forward_cache_browsertest.cc|'\ 'content/browser/back_forward_cache_browsertest.cc|'\
'content/test/data/back_forward_cache/|'\ 'content/test/data/back_forward_cache/|'\
'content/public/browser/back_forward_cache.*|'\ 'content/public/browser/back_forward_cache.*|'\
...@@ -1326,7 +1326,7 @@ ...@@ -1326,7 +1326,7 @@
'filepath': '^native_client_sdk/', 'filepath': '^native_client_sdk/',
}, },
'navigation': { 'navigation': {
'filepath': 'content/browser/frame_host|'\ 'filepath': 'content/browser/renderer_host|'\
'content/browser/renderer_host/render_process_host.*|'\ 'content/browser/renderer_host/render_process_host.*|'\
'content/browser/renderer_host/render_view_host.*|'\ 'content/browser/renderer_host/render_view_host.*|'\
'content/browser/web_contents/web_contents_impl.*|'\ 'content/browser/web_contents/web_contents_impl.*|'\
......
...@@ -160,8 +160,11 @@ specific_include_rules = { ...@@ -160,8 +160,11 @@ specific_include_rules = {
# SiteInstance and BrowsingInstance should not depend on the types of things # SiteInstance and BrowsingInstance should not depend on the types of things
# that rely on them, like RenderFrameHostImpl or WebContentsImpl. # that rely on them, like RenderFrameHostImpl or WebContentsImpl.
"(site_instance_impl|browsing_instance)\.(cc|h)": [ "(site_instance_impl|browsing_instance)\.(cc|h)": [
"-content/browser/frame_host", "-content/browser/renderer_host",
"-content/browser/web_contents", "-content/browser/web_contents",
# These files do not cycle back to SiteInstance or BrowsingInstance.
"+content/browser/renderer_host/render_process_host_impl.h",
"+content/browser/renderer_host/agent_scheduling_group_host.h",
], ],
"storage_partition_impl_unittest\.cc": [ "storage_partition_impl_unittest\.cc": [
"+services/network/cookie_manager.h", "+services/network/cookie_manager.h",
......
...@@ -18,7 +18,7 @@ when it's destructed. ...@@ -18,7 +18,7 @@ when it's destructed.
This object is primarily held by both the [`NavigationControllerImpl`]( This object is primarily held by both the [`NavigationControllerImpl`](
https://cs.chromium.org/chromium/src/content/browser/frame_host/navigation_controller_impl.h?dr=CSs&l=426) https://cs.chromium.org/chromium/src/content/browser/renderer_host/navigation_controller_impl.h?dr=CSs&l=426)
and in the [`ContentPlatformSpecificTabData`]( and in the [`ContentPlatformSpecificTabData`](
https://cs.chromium.org/chromium/src/components/sessions/content/content_platform_specific_tab_data.h?dr=C&l=35) https://cs.chromium.org/chromium/src/components/sessions/content/content_platform_specific_tab_data.h?dr=C&l=35)
which is used to restore tabs. The services stores recent tab which is used to restore tabs. The services stores recent tab
...@@ -80,7 +80,7 @@ The `session_namespace_id` for a frame's session storage is stored in the ...@@ -80,7 +80,7 @@ The `session_namespace_id` for a frame's session storage is stored in the
`CreateNewWindowParams` object in [frame.mojom](https://cs.chromium.org/chromium/src/content/common/frame.mojom). `CreateNewWindowParams` object in [frame.mojom](https://cs.chromium.org/chromium/src/content/common/frame.mojom).
If the frame wasn't created from a previous frame, the SessionStorage namespace If the frame wasn't created from a previous frame, the SessionStorage namespace
object is created [here](https://cs.chromium.org/chromium/src/content/browser/frame_host/navigation_controller_impl.cc?type=cs&l=1904) object is created [here](https://cs.chromium.org/chromium/src/content/browser/renderer_host/navigation_controller_impl.cc?type=cs&l=1904)
and the id is accessed [here](https://cs.chromium.org/chromium/src/content/browser/renderer_host/render_view_host_impl.cc?type=cs&l=321). and the id is accessed [here](https://cs.chromium.org/chromium/src/content/browser/renderer_host/render_view_host_impl.cc?type=cs&l=321).
## Renderer Connection to Session Storage ## Renderer Connection to Session Storage
......
...@@ -531,7 +531,7 @@ is defined by [automation.idl], which must be kept synchronized with ...@@ -531,7 +531,7 @@ is defined by [automation.idl], which must be kept synchronized with
[Node]: https://cs.chromium.org/chromium/src/third_party/blink/renderer/core/dom/node.h [Node]: https://cs.chromium.org/chromium/src/third_party/blink/renderer/core/dom/node.h
[RenderAccessibilityImpl]: https://cs.chromium.org/chromium/src/content/renderer/accessibility/render_accessibility_impl.h [RenderAccessibilityImpl]: https://cs.chromium.org/chromium/src/content/renderer/accessibility/render_accessibility_impl.h
[RenderAccessibilityManager]: https://source.chromium.org/chromium/chromium/src/+/master:content/renderer/accessibility/render_accessibility_manager.h [RenderAccessibilityManager]: https://source.chromium.org/chromium/chromium/src/+/master:content/renderer/accessibility/render_accessibility_manager.h
[RenderFrameHostImpl]: https://cs.chromium.org/chromium/src/content/browser/frame_host/render_frame_host_impl.h [RenderFrameHostImpl]: https://cs.chromium.org/chromium/src/content/browser/renderer_host/render_frame_host_impl.h
[ui::AXNodeData]: https://cs.chromium.org/chromium/src/ui/accessibility/ax_node_data.h [ui::AXNodeData]: https://cs.chromium.org/chromium/src/ui/accessibility/ax_node_data.h
[WebAXObject]: https://cs.chromium.org/chromium/src/third_party/blink/public/web/web_ax_object.h [WebAXObject]: https://cs.chromium.org/chromium/src/third_party/blink/public/web/web_ax_object.h
[automation API]: https://cs.chromium.org/chromium/src/chrome/renderer/resources/extensions/automation [automation API]: https://cs.chromium.org/chromium/src/chrome/renderer/resources/extensions/automation
......
// Generated with https://crrev.com/c/2220116 and: // Generated with https://crrev.com/c/2220116 and:
// python3 tools/state_transitions/state_graph.py content/browser/frame_host/navigation_request.cc NavigationState // python3 tools/state_transitions/state_graph.py content/browser/renderer_host/navigation_request.cc NavigationState
// //
// See tools/state_transitions/README.md // See tools/state_transitions/README.md
digraph createflow { digraph createflow {
......
// Generated with https://crrev.com/c/2220116 and: // Generated with https://crrev.com/c/2220116 and:
// python3 tools/state_transitions/state_graph.py content/browser/frame_host/render_frame_host_impl.cc LifecycleState // python3 tools/state_transitions/state_graph.py content/browser/renderer_host/render_frame_host_impl.cc LifecycleState
// //
// See tools/state_transitions/README.md // See tools/state_transitions/README.md
digraph createflow { digraph createflow {
......
...@@ -18,7 +18,7 @@ namespace network { ...@@ -18,7 +18,7 @@ namespace network {
// A CSPContext represents the Document where the Content-Security-Policy are // A CSPContext represents the Document where the Content-Security-Policy are
// checked. One must define via its virtual methods how to report violations // checked. One must define via its virtual methods how to report violations
// and what is the set of scheme that bypass the CSP. Its main implementation // and what is the set of scheme that bypass the CSP. Its main implementation
// is in content/browser/frame_host/render_frame_host_impl.h // is in content/browser/renderer_host/render_frame_host_impl.h
class COMPONENT_EXPORT(NETWORK_CPP) CSPContext { class COMPONENT_EXPORT(NETWORK_CPP) CSPContext {
public: public:
// This enum represents what set of policies should be checked by // This enum represents what set of policies should be checked by
......
...@@ -6,7 +6,7 @@ module network.mojom; ...@@ -6,7 +6,7 @@ module network.mojom;
// Enum types for the sandbox attributes of the main resource. // Enum types for the sandbox attributes of the main resource.
// TODO(https://crbug.com/1041376): Parse the flags in the network service. // TODO(https://crbug.com/1041376): Parse the flags in the network service.
// //
// See content/browser/frame_host/sandbox_flags.md for more details about how // See content/browser/renderer_host/sandbox_flags.md for more details about how
// the web-layer components (i.e. //content and Blink) consume and apply these // the web-layer components (i.e. //content and Blink) consume and apply these
// flags. // flags.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment