| 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_UI_APP_LIST_EXTENSION_APP_ITEM_H_ | 5 #ifndef CHROME_BROWSER_UI_APP_LIST_EXTENSION_APP_ITEM_H_ |
| 6 #define CHROME_BROWSER_UI_APP_LIST_EXTENSION_APP_ITEM_H_ | 6 #define CHROME_BROWSER_UI_APP_LIST_EXTENSION_APP_ITEM_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
| 11 #include "chrome/browser/extensions/extension_icon_image.h" | |
| 12 #include "chrome/browser/ui/app_list/app_context_menu_delegate.h" | 11 #include "chrome/browser/ui/app_list/app_context_menu_delegate.h" |
| 13 #include "chrome/browser/ui/app_list/app_list_syncable_service.h" | 12 #include "chrome/browser/ui/app_list/app_list_syncable_service.h" |
| 14 #include "chrome/browser/ui/extensions/extension_enable_flow_delegate.h" | 13 #include "chrome/browser/ui/extensions/extension_enable_flow_delegate.h" |
| 14 #include "extensions/browser/extension_icon_image.h" |
| 15 #include "ui/app_list/app_list_item.h" | 15 #include "ui/app_list/app_list_item.h" |
| 16 #include "ui/gfx/image/image_skia.h" | 16 #include "ui/gfx/image/image_skia.h" |
| 17 | 17 |
| 18 class AppListControllerDelegate; | 18 class AppListControllerDelegate; |
| 19 class ExtensionEnableFlow; | 19 class ExtensionEnableFlow; |
| 20 class Profile; | 20 class Profile; |
| 21 | 21 |
| 22 namespace app_list { | 22 namespace app_list { |
| 23 class AppContextMenu; | 23 class AppContextMenu; |
| 24 } | 24 } |
| (...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 119 // Whether or not this app is a platform app. | 119 // Whether or not this app is a platform app. |
| 120 bool is_platform_app_; | 120 bool is_platform_app_; |
| 121 | 121 |
| 122 // Whether this app item has an overlay. | 122 // Whether this app item has an overlay. |
| 123 bool has_overlay_; | 123 bool has_overlay_; |
| 124 | 124 |
| 125 DISALLOW_COPY_AND_ASSIGN(ExtensionAppItem); | 125 DISALLOW_COPY_AND_ASSIGN(ExtensionAppItem); |
| 126 }; | 126 }; |
| 127 | 127 |
| 128 #endif // CHROME_BROWSER_UI_APP_LIST_EXTENSION_APP_ITEM_H_ | 128 #endif // CHROME_BROWSER_UI_APP_LIST_EXTENSION_APP_ITEM_H_ |
| OLD | NEW |