Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(65)

Side by Side Diff: chrome/browser/ui/app_list/app_list_service.h

Issue 1336993002: Straighten up includes of host_desktop.h/host_desktop_type.h (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@host_desktop_type
Patch Set: Build fixes for Windows and Mac Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698