| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef WebContentSettingsClient_h | 5 #ifndef WebContentSettingsClient_h |
| 6 #define WebContentSettingsClient_h | 6 #define WebContentSettingsClient_h |
| 7 | 7 |
| 8 #include "public/platform/WebContentSettingCallbacks.h" | 8 #include "public/platform/WebContentSettingCallbacks.h" |
| 9 | 9 |
| 10 namespace blink { | 10 namespace blink { |
| (...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 virtual void passiveInsecureContentFound(const WebURL&) {} | 111 virtual void passiveInsecureContentFound(const WebURL&) {} |
| 112 | 112 |
| 113 // Notifies the client that the frame would have instantiated a plugin if | 113 // Notifies the client that the frame would have instantiated a plugin if |
| 114 // plugins were enabled. | 114 // plugins were enabled. |
| 115 virtual void didNotAllowPlugins() {} | 115 virtual void didNotAllowPlugins() {} |
| 116 | 116 |
| 117 // Notifies the client that the frame would have executed script if script | 117 // Notifies the client that the frame would have executed script if script |
| 118 // were enabled. | 118 // were enabled. |
| 119 virtual void didNotAllowScript() {} | 119 virtual void didNotAllowScript() {} |
| 120 | 120 |
| 121 // Notifies the client that the frame instantiated a keygen element. | |
| 122 virtual void didUseKeygen() {} | |
| 123 | |
| 124 virtual ~WebContentSettingsClient() {} | 121 virtual ~WebContentSettingsClient() {} |
| 125 }; | 122 }; |
| 126 | 123 |
| 127 } // namespace blink | 124 } // namespace blink |
| 128 | 125 |
| 129 #endif // WebContentSettingsClient_h | 126 #endif // WebContentSettingsClient_h |
| OLD | NEW |