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_APP_LIST_SERVICE_H_ | 5 #ifndef CHROME_BROWSER_UI_APP_LIST_APP_LIST_SERVICE_H_ |
6 #define CHROME_BROWSER_UI_APP_LIST_APP_LIST_SERVICE_H_ | 6 #define CHROME_BROWSER_UI_APP_LIST_APP_LIST_SERVICE_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
11 #include "base/compiler_specific.h" | 11 #include "base/compiler_specific.h" |
12 #include "base/memory/ref_counted.h" | 12 #include "base/memory/ref_counted.h" |
13 #include "chrome/browser/ui/host_desktop.h" | 13 #include "ui/gfx/host_desktop_type.h" |
14 #include "ui/gfx/native_widget_types.h" | 14 #include "ui/gfx/native_widget_types.h" |
15 | 15 |
16 class AppListControllerDelegate; | 16 class AppListControllerDelegate; |
17 class PrefRegistrySimple; | 17 class PrefRegistrySimple; |
18 class Profile; | 18 class Profile; |
19 | 19 |
20 namespace base { | 20 namespace base { |
21 class CommandLine; | 21 class CommandLine; |
22 class FilePath; | 22 class FilePath; |
23 } | 23 } |
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
132 virtual ~AppListService() {} | 132 virtual ~AppListService() {} |
133 | 133 |
134 // Do any once off initialization needed for the app list. | 134 // Do any once off initialization needed for the app list. |
135 virtual void Init(Profile* initial_profile) = 0; | 135 virtual void Init(Profile* initial_profile) = 0; |
136 | 136 |
137 private: | 137 private: |
138 DISALLOW_COPY_AND_ASSIGN(AppListService); | 138 DISALLOW_COPY_AND_ASSIGN(AppListService); |
139 }; | 139 }; |
140 | 140 |
141 #endif // CHROME_BROWSER_UI_APP_LIST_APP_LIST_SERVICE_H_ | 141 #endif // CHROME_BROWSER_UI_APP_LIST_APP_LIST_SERVICE_H_ |
OLD | NEW |