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

Side by Side Diff: chrome/browser/ui/webui/extensions/extension_settings_handler.h

Issue 93513006: Allow re-enabling of DISABLE_NOT_VERIFIED extensions if appropriate (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix a few nits Created 7 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 | Annotate | Revision Log
OLDNEW
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
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_
OLDNEW
« no previous file with comments | « chrome/browser/extensions/install_verifier.cc ('k') | chrome/browser/ui/webui/extensions/extension_settings_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698