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

Unified Diff: third_party/WebKit/public/web/WebRemoteFrame.h

Issue 2714943004: Move unique name generation and tracking into //content. (Closed)
Patch Set: . Created 3 years, 10 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: third_party/WebKit/public/web/WebRemoteFrame.h
diff --git a/third_party/WebKit/public/web/WebRemoteFrame.h b/third_party/WebKit/public/web/WebRemoteFrame.h
index 04659d03cc5668ba1cdefed96b19da8b3c8552f3..26b7b80b4666b82282e58eec46b3cf793ef92dbb 100644
--- a/third_party/WebKit/public/web/WebRemoteFrame.h
+++ b/third_party/WebKit/public/web/WebRemoteFrame.h
@@ -34,7 +34,6 @@ class WebRemoteFrame : public WebFrame {
// children.
virtual WebLocalFrame* createLocalChild(WebTreeScopeType,
const WebString& name,
- const WebString& uniqueName,
WebSandboxFlags,
WebFrameClient*,
blink::InterfaceProvider*,
@@ -45,7 +44,6 @@ class WebRemoteFrame : public WebFrame {
virtual WebRemoteFrame* createRemoteChild(WebTreeScopeType,
const WebString& name,
- const WebString& uniqueName,
WebSandboxFlags,
WebRemoteFrameClient*,
WebFrame* opener) = 0;
@@ -54,37 +52,35 @@ class WebRemoteFrame : public WebFrame {
virtual void setWebLayer(WebLayer*) = 0;
// Set security origin replicated from another process.
- virtual void setReplicatedOrigin(const WebSecurityOrigin&) const = 0;
+ virtual void setReplicatedOrigin(const WebSecurityOrigin&) = 0;
// Set sandbox flags replicated from another process.
- virtual void setReplicatedSandboxFlags(WebSandboxFlags) const = 0;
+ virtual void setReplicatedSandboxFlags(WebSandboxFlags) = 0;
- // Set frame |name| and |uniqueName| replicated from another process.
- virtual void setReplicatedName(const WebString& name,
- const WebString& uniqueName) const = 0;
+ // Set frame |name| replicated from another process.
+ virtual void setReplicatedName(const WebString&) = 0;
virtual void setReplicatedFeaturePolicyHeader(
- const WebParsedFeaturePolicyHeader& parsedHeader) const = 0;
+ const WebParsedFeaturePolicyHeader& parsedHeader) = 0;
// Adds |header| to the set of replicated CSP headers.
virtual void addReplicatedContentSecurityPolicyHeader(
const WebString& headerValue,
WebContentSecurityPolicyType,
- WebContentSecurityPolicySource) const = 0;
+ WebContentSecurityPolicySource) = 0;
// Resets replicated CSP headers to an empty set.
- virtual void resetReplicatedContentSecurityPolicy() const = 0;
+ virtual void resetReplicatedContentSecurityPolicy() = 0;
// Set frame enforcement of insecure request policy replicated from another
// process.
- virtual void setReplicatedInsecureRequestPolicy(
- WebInsecureRequestPolicy) const = 0;
+ virtual void setReplicatedInsecureRequestPolicy(WebInsecureRequestPolicy) = 0;
// Set the frame to a unique origin that is potentially trustworthy,
// replicated from another process.
- virtual void setReplicatedPotentiallyTrustworthyUniqueOrigin(bool) const = 0;
+ virtual void setReplicatedPotentiallyTrustworthyUniqueOrigin(bool) = 0;
- virtual void dispatchLoadEventOnFrameOwner() const = 0;
+ virtual void dispatchLoadEventOnFrameOwner() = 0;
virtual void didStartLoading() = 0;
virtual void didStopLoading() = 0;

Powered by Google App Engine
This is Rietveld 408576698