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

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: Clean up code. 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..bc3a4885a01af14e439e8d42a69d1e2e26df76a7 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() 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