OLD | NEW |
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_EXTENSIONS_EXTENSION_INSTALL_PROMPT_H_ | 5 #ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_INSTALL_PROMPT_H_ |
6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_INSTALL_PROMPT_H_ | 6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_INSTALL_PROMPT_H_ |
7 #pragma once | |
8 | 7 |
9 #include <string> | 8 #include <string> |
10 #include <vector> | 9 #include <vector> |
11 | 10 |
12 #include "base/compiler_specific.h" | 11 #include "base/compiler_specific.h" |
13 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
14 #include "base/string16.h" | 13 #include "base/string16.h" |
15 #include "chrome/browser/extensions/crx_installer_error.h" | 14 #include "chrome/browser/extensions/crx_installer_error.h" |
16 #include "chrome/browser/extensions/image_loading_tracker.h" | 15 #include "chrome/browser/extensions/image_loading_tracker.h" |
17 #include "chrome/common/extensions/url_pattern.h" | 16 #include "chrome/common/extensions/url_pattern.h" |
(...skipping 300 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
318 | 317 |
319 // Creates an ExtensionInstallPrompt from |browser|. Caller assumes ownership. | 318 // Creates an ExtensionInstallPrompt from |browser|. Caller assumes ownership. |
320 // TODO(beng): remove this once various extensions types are weaned from | 319 // TODO(beng): remove this once various extensions types are weaned from |
321 // Browser. | 320 // Browser. |
322 ExtensionInstallPrompt* CreateExtensionInstallPromptWithBrowser( | 321 ExtensionInstallPrompt* CreateExtensionInstallPromptWithBrowser( |
323 Browser* browser); | 322 Browser* browser); |
324 | 323 |
325 } // namespace chrome | 324 } // namespace chrome |
326 | 325 |
327 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_INSTALL_PROMPT_H_ | 326 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_INSTALL_PROMPT_H_ |
OLD | NEW |