| 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_UI_H_ | 5 #ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_INSTALL_UI_H_ |
| 6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_INSTALL_UI_H_ | 6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_INSTALL_UI_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| 11 | 11 |
| 12 #include "base/compiler_specific.h" | 12 #include "base/compiler_specific.h" |
| 13 #include "base/string16.h" | 13 #include "base/string16.h" |
| 14 #include "chrome/browser/extensions/image_loading_tracker.h" | 14 #include "chrome/browser/extensions/image_loading_tracker.h" |
| 15 #include "chrome/common/extensions/url_pattern.h" | 15 #include "chrome/common/extensions/url_pattern.h" |
| 16 #include "third_party/skia/include/core/SkBitmap.h" | 16 #include "third_party/skia/include/core/SkBitmap.h" |
| 17 #include "ui/gfx/image/image.h" | 17 #include "ui/gfx/image/image.h" |
| 18 #include "ui/gfx/native_widget_types.h" | 18 #include "ui/gfx/native_widget_types.h" |
| 19 | 19 |
| 20 class Browser; | 20 class Browser; |
| 21 class ExtensionPermissionSet; | 21 class ExtensionPermissionSet; |
| 22 class MessageLoop; | 22 class MessageLoop; |
| 23 class Profile; | 23 class Profile; |
| 24 class InfoBarDelegate; | 24 class InfoBarDelegate; |
| 25 class TabContentsWrapper; | 25 class TabContents; |
| 26 typedef TabContents TabContentsWrapper; |
| 26 | 27 |
| 27 namespace base { | 28 namespace base { |
| 28 class DictionaryValue; | 29 class DictionaryValue; |
| 29 } | 30 } |
| 30 | 31 |
| 31 namespace extensions { | 32 namespace extensions { |
| 32 class BundleInstaller; | 33 class BundleInstaller; |
| 33 class Extension; | 34 class Extension; |
| 34 class ExtensionWebstorePrivateApiTest; | 35 class ExtensionWebstorePrivateApiTest; |
| 35 } // namespace extensions | 36 } // namespace extensions |
| (...skipping 261 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 297 | 298 |
| 298 // Whether to show an installed bubble on app install, or use the default | 299 // Whether to show an installed bubble on app install, or use the default |
| 299 // action of opening a new tab page. | 300 // action of opening a new tab page. |
| 300 bool use_app_installed_bubble_; | 301 bool use_app_installed_bubble_; |
| 301 | 302 |
| 302 // Whether or not to show the default UI after completing the installation. | 303 // Whether or not to show the default UI after completing the installation. |
| 303 bool skip_post_install_ui_; | 304 bool skip_post_install_ui_; |
| 304 }; | 305 }; |
| 305 | 306 |
| 306 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_INSTALL_UI_H_ | 307 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_INSTALL_UI_H_ |
| OLD | NEW |