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

Unified Diff: third_party/WebKit/Source/web/FrameLoaderClientImpl.h

Issue 1417033010: Adding <keygen> Content Setting (Blink) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@keygen_core
Patch Set: Created 5 years, 1 month 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/Source/web/FrameLoaderClientImpl.h
diff --git a/third_party/WebKit/Source/web/FrameLoaderClientImpl.h b/third_party/WebKit/Source/web/FrameLoaderClientImpl.h
index ebc505d0145c9710ca0b8001695189103e210d86..5e8d6c393a727884a22052b05b036af98d06174a 100644
--- a/third_party/WebKit/Source/web/FrameLoaderClientImpl.h
+++ b/third_party/WebKit/Source/web/FrameLoaderClientImpl.h
@@ -135,12 +135,14 @@ public:
void didRemoveAllPendingStylesheet() override;
bool allowScript(bool enabledPerSettings) override;
bool allowScriptFromSource(bool enabledPerSettings, const KURL& scriptURL) override;
+ bool allowKeygen(bool enabledPerSettings) override;
bool allowPlugins(bool enabledPerSettings) override;
bool allowImage(bool enabledPerSettings, const KURL& imageURL) override;
bool allowMedia(const KURL& mediaURL) override;
bool allowDisplayingInsecureContent(bool enabledPerSettings, SecurityOrigin*, const KURL&) override;
bool allowRunningInsecureContent(bool enabledPerSettings, SecurityOrigin*, const KURL&) override;
void didNotAllowScript() override;
+ void didNotAllowKeygen() override;
void didNotAllowPlugins() override;
WebCookieJar* cookieJar() const override;

Powered by Google App Engine
This is Rietveld 408576698