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

Side by Side Diff: third_party/WebKit/Source/web/FrameLoaderClientImpl.h

Issue 2536993002: Remove support for the keygen tag (Closed)
Patch Set: Rebased Created 4 years 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 160 matching lines...) Expand 10 before | Expand all | Expand 10 after
171 const KURL& scriptURL) override; 171 const KURL& scriptURL) override;
172 bool allowPlugins(bool enabledPerSettings) override; 172 bool allowPlugins(bool enabledPerSettings) override;
173 bool allowImage(bool enabledPerSettings, const KURL& imageURL) override; 173 bool allowImage(bool enabledPerSettings, const KURL& imageURL) override;
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 void didUseKeygen() override;
182 181
183 WebCookieJar* cookieJar() const override; 182 WebCookieJar* cookieJar() const override;
184 void frameFocused() const override; 183 void frameFocused() const override;
185 void didChangeName(const String& name, const String& uniqueName) override; 184 void didChangeName(const String& name, const String& uniqueName) override;
186 void didEnforceInsecureRequestPolicy(WebInsecureRequestPolicy) override; 185 void didEnforceInsecureRequestPolicy(WebInsecureRequestPolicy) override;
187 void didUpdateToUniqueOrigin() override; 186 void didUpdateToUniqueOrigin() override;
188 void didChangeSandboxFlags(Frame* childFrame, SandboxFlags) override; 187 void didChangeSandboxFlags(Frame* childFrame, SandboxFlags) override;
189 void didSetFeaturePolicyHeader( 188 void didSetFeaturePolicyHeader(
190 const WebParsedFeaturePolicy& parsedHeader) override; 189 const WebParsedFeaturePolicy& parsedHeader) override;
191 void didAddContentSecurityPolicy(const String& headerValue, 190 void didAddContentSecurityPolicy(const String& headerValue,
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
239 238
240 DEFINE_TYPE_CASTS(FrameLoaderClientImpl, 239 DEFINE_TYPE_CASTS(FrameLoaderClientImpl,
241 FrameLoaderClient, 240 FrameLoaderClient,
242 client, 241 client,
243 client->isFrameLoaderClientImpl(), 242 client->isFrameLoaderClientImpl(),
244 client.isFrameLoaderClientImpl()); 243 client.isFrameLoaderClientImpl());
245 244
246 } // namespace blink 245 } // namespace blink
247 246
248 #endif 247 #endif
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/loader/FrameLoaderClient.h ('k') | third_party/WebKit/Source/web/FrameLoaderClientImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698