OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 CHROME_BROWSER_UI_WEBUI_EXTENSIONS_EXTENSION_SETTINGS_HANDLER_H_ | 5 #ifndef CHROME_BROWSER_UI_WEBUI_EXTENSIONS_EXTENSION_SETTINGS_HANDLER_H_ |
6 #define CHROME_BROWSER_UI_WEBUI_EXTENSIONS_EXTENSION_SETTINGS_HANDLER_H_ | 6 #define CHROME_BROWSER_UI_WEBUI_EXTENSIONS_EXTENSION_SETTINGS_HANDLER_H_ |
7 | 7 |
8 #include <set> | 8 #include <set> |
9 #include <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
(...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
263 | 263 |
264 // The UI for showing what permissions the extension has. | 264 // The UI for showing what permissions the extension has. |
265 scoped_ptr<ExtensionInstallPrompt> prompt_; | 265 scoped_ptr<ExtensionInstallPrompt> prompt_; |
266 | 266 |
267 ScopedObserver<ExtensionWarningService, ExtensionWarningService::Observer> | 267 ScopedObserver<ExtensionWarningService, ExtensionWarningService::Observer> |
268 warning_service_observer_; | 268 warning_service_observer_; |
269 | 269 |
270 // An observer to listen for when Extension errors are reported. | 270 // An observer to listen for when Extension errors are reported. |
271 ScopedObserver<ErrorConsole, ErrorConsole::Observer> error_console_observer_; | 271 ScopedObserver<ErrorConsole, ErrorConsole::Observer> error_console_observer_; |
272 | 272 |
| 273 // Whether we found any DISABLE_NOT_VERIFIED extensions and want to kick off |
| 274 // a verification check to try and rescue them. |
| 275 bool should_do_verification_check_; |
| 276 |
273 DISALLOW_COPY_AND_ASSIGN(ExtensionSettingsHandler); | 277 DISALLOW_COPY_AND_ASSIGN(ExtensionSettingsHandler); |
274 }; | 278 }; |
275 | 279 |
276 } // namespace extensions | 280 } // namespace extensions |
277 | 281 |
278 #endif // CHROME_BROWSER_UI_WEBUI_EXTENSIONS_EXTENSION_SETTINGS_HANDLER_H_ | 282 #endif // CHROME_BROWSER_UI_WEBUI_EXTENSIONS_EXTENSION_SETTINGS_HANDLER_H_ |
OLD | NEW |