diff options
Diffstat (limited to 'content/browser/frame_host/frame_tree_node.h')
-rw-r--r-- | content/browser/frame_host/frame_tree_node.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/content/browser/frame_host/frame_tree_node.h b/content/browser/frame_host/frame_tree_node.h index 7e1add1..bcb7780 100644 --- a/content/browser/frame_host/frame_tree_node.h +++ b/content/browser/frame_host/frame_tree_node.h @@ -93,10 +93,10 @@ class CONTENT_EXPORT FrameTreeNode { current_url_ = url; } - void set_current_origin(const url::Origin& origin) { - replication_state_.origin = origin; - } + // Set the current origin and notify proxies about the update. + void SetCurrentOrigin(const url::Origin& origin); + // Set the current name and notify proxies about the update. void SetFrameName(const std::string& name); SandboxFlags effective_sandbox_flags() { return effective_sandbox_flags_; } |