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

Side by Side Diff: third_party/WebKit/Source/web/LocalFrameClientImpl.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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2009, 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2009, 2012 Google Inc. All rights reserved.
3 * Copyright (C) 2011 Apple Inc. All rights reserved. 3 * Copyright (C) 2011 Apple Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are 6 * modification, are permitted provided that the following conditions are
7 * met: 7 * met:
8 * 8 *
9 * * Redistributions of source code must retain the above copyright 9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after
174 bool allowRunningInsecureContent(bool enabledPerSettings, 174 bool allowRunningInsecureContent(bool enabledPerSettings,
175 SecurityOrigin*, 175 SecurityOrigin*,
176 const KURL&) override; 176 const KURL&) override;
177 bool allowAutoplay(bool defaultValue) override; 177 bool allowAutoplay(bool defaultValue) override;
178 void passiveInsecureContentFound(const KURL&) override; 178 void passiveInsecureContentFound(const KURL&) override;
179 void didNotAllowScript() override; 179 void didNotAllowScript() override;
180 void didNotAllowPlugins() override; 180 void didNotAllowPlugins() override;
181 181
182 WebCookieJar* cookieJar() const override; 182 WebCookieJar* cookieJar() const override;
183 void frameFocused() const override; 183 void frameFocused() const override;
184 void didChangeName(const String& name, const String& uniqueName) override; 184 void didChangeName(const String&) override;
185 void didEnforceInsecureRequestPolicy(WebInsecureRequestPolicy) override; 185 void didEnforceInsecureRequestPolicy(WebInsecureRequestPolicy) override;
186 void didUpdateToUniqueOrigin() override; 186 void didUpdateToUniqueOrigin() override;
187 void didChangeSandboxFlags(Frame* childFrame, SandboxFlags) override; 187 void didChangeSandboxFlags(Frame* childFrame, SandboxFlags) override;
188 void didSetFeaturePolicyHeader( 188 void didSetFeaturePolicyHeader(
189 const WebParsedFeaturePolicy& parsedHeader) override; 189 const WebParsedFeaturePolicy& parsedHeader) override;
190 void didAddContentSecurityPolicy( 190 void didAddContentSecurityPolicy(
191 const String& headerValue, 191 const String& headerValue,
192 ContentSecurityPolicyHeaderType, 192 ContentSecurityPolicyHeaderType,
193 ContentSecurityPolicyHeaderSource, 193 ContentSecurityPolicyHeaderSource,
194 const std::vector<WebContentSecurityPolicyPolicy>&) override; 194 const std::vector<WebContentSecurityPolicyPolicy>&) override;
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
240 240
241 DEFINE_TYPE_CASTS(LocalFrameClientImpl, 241 DEFINE_TYPE_CASTS(LocalFrameClientImpl,
242 LocalFrameClient, 242 LocalFrameClient,
243 client, 243 client,
244 client->isLocalFrameClientImpl(), 244 client->isLocalFrameClientImpl(),
245 client.isLocalFrameClientImpl()); 245 client.isLocalFrameClientImpl());
246 246
247 } // namespace blink 247 } // namespace blink
248 248
249 #endif 249 #endif
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/page/FrameTree.cpp ('k') | third_party/WebKit/Source/web/LocalFrameClientImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698