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

Side by Side Diff: third_party/WebKit/Source/core/frame/LocalFrameClient.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) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights
3 * reserved. 3 * reserved.
4 * Copyright (C) 2012 Google Inc. All rights reserved. 4 * Copyright (C) 2012 Google Inc. All rights reserved.
5 * 5 *
6 * Redistribution and use in source and binary forms, with or without 6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions 7 * modification, are permitted provided that the following conditions
8 * are met: 8 * are met:
9 * 9 *
10 * 1. Redistributions of source code must retain the above copyright 10 * 1. Redistributions of source code must retain the above copyright
(...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after
259 // JavaScript but did not because allowScript returned false. We have a 259 // JavaScript but did not because allowScript returned false. We have a
260 // separate callback here because there are a number of places that need to 260 // separate callback here because there are a number of places that need to
261 // know if JavaScript is enabled but are not necessarily preparing to execute 261 // know if JavaScript is enabled but are not necessarily preparing to execute
262 // script. 262 // script.
263 virtual void didNotAllowScript() {} 263 virtual void didNotAllowScript() {}
264 // This callback is similar, but for plugins. 264 // This callback is similar, but for plugins.
265 virtual void didNotAllowPlugins() {} 265 virtual void didNotAllowPlugins() {}
266 266
267 virtual WebCookieJar* cookieJar() const = 0; 267 virtual WebCookieJar* cookieJar() const = 0;
268 268
269 virtual void didChangeName(const String& name, const String& uniqueName) {} 269 virtual void didChangeName(const String&) {}
270 270
271 virtual void didEnforceInsecureRequestPolicy(WebInsecureRequestPolicy) {} 271 virtual void didEnforceInsecureRequestPolicy(WebInsecureRequestPolicy) {}
272 272
273 virtual void didUpdateToUniqueOrigin() {} 273 virtual void didUpdateToUniqueOrigin() {}
274 274
275 virtual void didChangeSandboxFlags(Frame* childFrame, SandboxFlags) {} 275 virtual void didChangeSandboxFlags(Frame* childFrame, SandboxFlags) {}
276 276
277 virtual void didSetFeaturePolicyHeader( 277 virtual void didSetFeaturePolicyHeader(
278 const WebParsedFeaturePolicy& parsedHeader) {} 278 const WebParsedFeaturePolicy& parsedHeader) {}
279 279
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
340 virtual KURL overrideFlashEmbedWithHTML(const KURL&) { return KURL(); } 340 virtual KURL overrideFlashEmbedWithHTML(const KURL&) { return KURL(); }
341 341
342 virtual BlameContext* frameBlameContext() { return nullptr; } 342 virtual BlameContext* frameBlameContext() { return nullptr; }
343 343
344 virtual void setHasReceivedUserGesture() {} 344 virtual void setHasReceivedUserGesture() {}
345 }; 345 };
346 346
347 } // namespace blink 347 } // namespace blink
348 348
349 #endif // LocalFrameClient_h 349 #endif // LocalFrameClient_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/frame/LocalDOMWindow.cpp ('k') | third_party/WebKit/Source/core/loader/FrameLoader.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698