Index: chrome/browser/ui/extensions/extension_install_ui_factory.h |
diff --git a/chrome/browser/ui/extensions/extension_install_ui_factory.h b/chrome/browser/ui/extensions/extension_install_ui_factory.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..ed907d70160c2e6de47e154845654d39e960f459 |
--- /dev/null |
+++ b/chrome/browser/ui/extensions/extension_install_ui_factory.h |
@@ -0,0 +1,20 @@ |
+// Copyright 2014 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#ifndef CHROME_BROWSER_UI_EXTENSIONS_EXTENSION_INSTALL_UI_FACTORY_H_ |
+#define CHROME_BROWSER_UI_EXTENSIONS_EXTENSION_INSTALL_UI_FACTORY_H_ |
+ |
+namespace content { |
+class BrowserContext; |
+} |
+ |
+namespace extensions { |
+class ExtensionInstallUI; |
+ |
+extensions::ExtensionInstallUI* CreateExtensionInstallUI( |
Ken Rockot(use gerrit already)
2014/10/15 22:20:08
Please return a scoped_ptr to enforce ownership tr
pkotwicz
2014/10/15 23:08:53
To double check, with your proposal, chrome/browse
|
+ content::BrowserContext* context); |
+ |
+} // namespace extensions |
+ |
+#endif // CHROME_BROWSER_UI_EXTENSIONS_EXTENSION_INSTALL_UI_FACTORY_H_ |