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

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: . 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 bool AddExternalInstallError(ExtensionService* service,
Jeffrey Yasskin 2012/10/15 00:43:59 Please document these functions.
Matt Perry 2012/10/15 19:13:38 Done.
16 const Extension* extension);
17 void RemoveExternalInstallError(ExtensionService* service);
18
19 // Shows the extension install dialog.
20 void ShowExternalInstallDialog(ExtensionService* service,
Matt Perry 2012/10/15 19:13:38 I made this a static function in the .cc, since it
21 Browser* browser,
22 const Extension* extension);
23
24 } // namespace extensions
25
26 #endif // CHROME_BROWSER_EXTENSIONS_EXTERNAL_INSTALL_UI_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698