| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_SEARCH_APP_RESULT_H_ | 5 #ifndef CHROME_BROWSER_UI_APP_LIST_SEARCH_APP_RESULT_H_ |
| 6 #define CHROME_BROWSER_UI_APP_LIST_SEARCH_APP_RESULT_H_ | 6 #define CHROME_BROWSER_UI_APP_LIST_SEARCH_APP_RESULT_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/search/chrome_search_result.h" | 12 #include "chrome/browser/ui/app_list/search/chrome_search_result.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 "extensions/browser/extension_registry_observer.h" | 15 #include "extensions/browser/extension_registry_observer.h" |
| 16 | 16 |
| 17 class AppListControllerDelegate; | 17 class AppListControllerDelegate; |
| 18 class ExtensionEnableFlow; | 18 class ExtensionEnableFlow; |
| 19 class Profile; | 19 class Profile; |
| 20 | 20 |
| 21 namespace extensions { | 21 namespace extensions { |
| 22 class ExtensionRegistry; | 22 class ExtensionRegistry; |
| 23 } | 23 } |
| 24 | 24 |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 91 scoped_ptr<ExtensionEnableFlow> extension_enable_flow_; | 91 scoped_ptr<ExtensionEnableFlow> extension_enable_flow_; |
| 92 | 92 |
| 93 extensions::ExtensionRegistry* extension_registry_; | 93 extensions::ExtensionRegistry* extension_registry_; |
| 94 | 94 |
| 95 DISALLOW_COPY_AND_ASSIGN(AppResult); | 95 DISALLOW_COPY_AND_ASSIGN(AppResult); |
| 96 }; | 96 }; |
| 97 | 97 |
| 98 } // namespace app_list | 98 } // namespace app_list |
| 99 | 99 |
| 100 #endif // CHROME_BROWSER_UI_APP_LIST_SEARCH_APP_RESULT_H_ | 100 #endif // CHROME_BROWSER_UI_APP_LIST_SEARCH_APP_RESULT_H_ |
| OLD | NEW |