Chromium Code Reviews| OLD | NEW |
|---|---|
| (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_ | |
| OLD | NEW |