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

Side by Side Diff: chrome/browser/extensions/external_install_ui.h

Issue 11150002: New post-sideload UI: (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixed unit tests, disable on chromeos, feature switch Created 8 years, 2 months 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
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef CHROME_BROWSER_EXTENSIONS_EXTERNAL_INSTALL_UI_H_
6 #define CHROME_BROWSER_EXTENSIONS_EXTERNAL_INSTALL_UI_H_
7
8 class Browser;
9 class ExtensionService;
10
11 namespace extensions {
12
13 class Extension;
14
15 // Adds/Removes a global error informing the user that an external extension
16 // was installed.
17 bool AddExternalInstallError(ExtensionService* service,
18 const Extension* extension);
19 void RemoveExternalInstallError(ExtensionService* service);
20
21 // Used for testing.
22 bool HasExternalInstallError(ExtensionService* service);
23
24 } // namespace extensions
25
26 #endif // CHROME_BROWSER_EXTENSIONS_EXTERNAL_INSTALL_UI_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698