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

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

Issue 2714943004: Move unique name generation and tracking into //content. (Closed)
Patch Set: Rebase again. Created 3 years, 9 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
« no previous file with comments | « third_party/WebKit/public/web/WebHistoryItem.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 ef5d0828dcb511fedef6f0633030f71a4ecc49a0..315bf35eb90c1f9e4a55c7c618ce2f769f0d5f9d 100644
--- a/third_party/WebKit/public/web/WebRemoteFrame.h
+++ b/third_party/WebKit/public/web/WebRemoteFrame.h
@@ -35,7 +35,6 @@ class WebRemoteFrame : public WebFrame {
// children.
virtual WebLocalFrame* createLocalChild(WebTreeScopeType,
const WebString& name,
- const WebString& uniqueName,
WebSandboxFlags,
WebFrameClient*,
blink::InterfaceProvider*,
@@ -46,7 +45,6 @@ class WebRemoteFrame : public WebFrame {
virtual WebRemoteFrame* createRemoteChild(WebTreeScopeType,
const WebString& name,
- const WebString& uniqueName,
WebSandboxFlags,
WebRemoteFrameClient*,
WebFrame* opener) = 0;
@@ -55,37 +53,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 WebParsedFeaturePolicy& parsedHeader) const = 0;
+ const WebParsedFeaturePolicy& 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;
« no previous file with comments | « third_party/WebKit/public/web/WebHistoryItem.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698