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

Side by Side Diff: third_party/WebKit/Source/core/loader/FrameLoaderClient.h

Issue 1417033010: Adding <keygen> Content Setting (Blink) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@keygen_core
Patch Set: Rebase. Created 4 years, 11 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 reserved. 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights reserved.
3 * Copyright (C) 2012 Google Inc. All rights reserved. 3 * Copyright (C) 2012 Google 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 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 8 *
9 * 1. Redistributions of source code must retain the above copyright 9 * 1. 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 179 matching lines...) Expand 10 before | Expand all | Expand 10 after
190 190
191 // This callback notifies the client that the frame was about to run 191 // This callback notifies the client that the frame was about to run
192 // JavaScript but did not because allowScript returned false. We 192 // JavaScript but did not because allowScript returned false. We
193 // have a separate callback here because there are a number of places 193 // have a separate callback here because there are a number of places
194 // that need to know if JavaScript is enabled but are not necessarily 194 // that need to know if JavaScript is enabled but are not necessarily
195 // preparing to execute script. 195 // preparing to execute script.
196 virtual void didNotAllowScript() { } 196 virtual void didNotAllowScript() { }
197 // This callback is similar, but for plugins. 197 // This callback is similar, but for plugins.
198 virtual void didNotAllowPlugins() { } 198 virtual void didNotAllowPlugins() { }
199 199
200 // This callback notifies the client that the frame created a Keygen element .
201 virtual void didUseKeygen() { }
202
200 virtual WebCookieJar* cookieJar() const = 0; 203 virtual WebCookieJar* cookieJar() const = 0;
201 204
202 virtual void didChangeName(const String&) { } 205 virtual void didChangeName(const String&) { }
203 206
204 virtual void didEnforceStrictMixedContentChecking() {} 207 virtual void didEnforceStrictMixedContentChecking() {}
205 208
206 virtual void didChangeSandboxFlags(Frame* childFrame, SandboxFlags) { } 209 virtual void didChangeSandboxFlags(Frame* childFrame, SandboxFlags) { }
207 210
208 virtual void didChangeFrameOwnerProperties(HTMLFrameElementBase*) { } 211 virtual void didChangeFrameOwnerProperties(HTMLFrameElementBase*) { }
209 212
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
246 BeforeUnloadHandler, 249 BeforeUnloadHandler,
247 UnloadHandler, 250 UnloadHandler,
248 }; 251 };
249 virtual void suddenTerminationDisablerChanged(bool present, SuddenTerminatio nDisablerType) { } 252 virtual void suddenTerminationDisablerChanged(bool present, SuddenTerminatio nDisablerType) { }
250 253
251 }; 254 };
252 255
253 } // namespace blink 256 } // namespace blink
254 257
255 #endif // FrameLoaderClient_h 258 #endif // FrameLoaderClient_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/html/HTMLKeygenElement.cpp ('k') | third_party/WebKit/Source/web/FrameLoaderClientImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698