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_IMPL_H_ | 5 #ifndef CHROME_BROWSER_UI_APP_LIST_APP_LIST_SERVICE_IMPL_H_ |
6 #define CHROME_BROWSER_UI_APP_LIST_APP_LIST_SERVICE_IMPL_H_ | 6 #define CHROME_BROWSER_UI_APP_LIST_APP_LIST_SERVICE_IMPL_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
(...skipping 10 matching lines...) Expand all Loading... |
21 class ProfileStore; | 21 class ProfileStore; |
22 | 22 |
23 namespace base { | 23 namespace base { |
24 class FilePath; | 24 class FilePath; |
25 } | 25 } |
26 | 26 |
27 // Parts of the AppListService implementation shared between platforms. | 27 // Parts of the AppListService implementation shared between platforms. |
28 class AppListServiceImpl : public AppListService, | 28 class AppListServiceImpl : public AppListService, |
29 public ProfileInfoCacheObserver { | 29 public ProfileInfoCacheObserver { |
30 public: | 30 public: |
31 static void RecordAppListLaunch(); | |
32 static void RecordAppListAppLaunch(); | |
33 virtual ~AppListServiceImpl(); | 31 virtual ~AppListServiceImpl(); |
34 | 32 |
35 // Constructor used for testing. | 33 // Constructor used for testing. |
36 AppListServiceImpl(const CommandLine& command_line, | 34 AppListServiceImpl(const CommandLine& command_line, |
37 PrefService* local_state, | 35 PrefService* local_state, |
38 scoped_ptr<ProfileStore> profile_store, | 36 scoped_ptr<ProfileStore> profile_store, |
39 scoped_ptr<KeepAliveService> keep_alive_service); | 37 scoped_ptr<KeepAliveService> keep_alive_service); |
40 | 38 |
| 39 void RecordAppListLaunch(); |
| 40 static void RecordAppListAppLaunch(); |
| 41 |
41 // AppListService overrides: | 42 // AppListService overrides: |
42 virtual void SetAppListNextPaintCallback(void (*callback)()) OVERRIDE; | 43 virtual void SetAppListNextPaintCallback(void (*callback)()) OVERRIDE; |
43 virtual void HandleFirstRun() OVERRIDE; | 44 virtual void HandleFirstRun() OVERRIDE; |
44 virtual void Init(Profile* initial_profile) OVERRIDE; | 45 virtual void Init(Profile* initial_profile) OVERRIDE; |
45 virtual base::FilePath GetProfilePath( | 46 virtual base::FilePath GetProfilePath( |
46 const base::FilePath& user_data_dir) OVERRIDE; | 47 const base::FilePath& user_data_dir) OVERRIDE; |
47 virtual void SetProfilePath(const base::FilePath& profile_path) OVERRIDE; | 48 virtual void SetProfilePath(const base::FilePath& profile_path) OVERRIDE; |
48 virtual void Show() OVERRIDE; | 49 virtual void Show() OVERRIDE; |
49 virtual void EnableAppList(Profile* initial_profile) OVERRIDE; | 50 virtual void AutoShowForProfile(Profile* requested_profile) OVERRIDE; |
| 51 virtual void EnableAppList(Profile* initial_profile, |
| 52 AppListEnableSource enable_source) OVERRIDE; |
50 | 53 |
51 protected: | 54 protected: |
52 AppListServiceImpl(); | 55 AppListServiceImpl(); |
53 | 56 |
54 void InvalidatePendingProfileLoads(); | 57 void InvalidatePendingProfileLoads(); |
55 ProfileLoader& profile_loader() { return *profile_loader_; } | 58 ProfileLoader& profile_loader() { return *profile_loader_; } |
56 const ProfileLoader& profile_loader() const { return *profile_loader_; } | 59 const ProfileLoader& profile_loader() const { return *profile_loader_; } |
57 | 60 |
58 // Process command line flags shared between desktop implementations of the | 61 // Process command line flags shared between desktop implementations of the |
59 // app list. Currently this allows for enabling or disabling the app list. | 62 // app list. Currently this allows for enabling or disabling the app list. |
(...skipping 23 matching lines...) Expand all Loading... |
83 scoped_ptr<ProfileStore> profile_store_; | 86 scoped_ptr<ProfileStore> profile_store_; |
84 base::WeakPtrFactory<AppListServiceImpl> weak_factory_; | 87 base::WeakPtrFactory<AppListServiceImpl> weak_factory_; |
85 CommandLine command_line_; | 88 CommandLine command_line_; |
86 PrefService* local_state_; | 89 PrefService* local_state_; |
87 scoped_ptr<ProfileLoader> profile_loader_; | 90 scoped_ptr<ProfileLoader> profile_loader_; |
88 | 91 |
89 DISALLOW_COPY_AND_ASSIGN(AppListServiceImpl); | 92 DISALLOW_COPY_AND_ASSIGN(AppListServiceImpl); |
90 }; | 93 }; |
91 | 94 |
92 #endif // CHROME_BROWSER_UI_APP_LIST_APP_LIST_SERVICE_IMPL_H_ | 95 #endif // CHROME_BROWSER_UI_APP_LIST_APP_LIST_SERVICE_IMPL_H_ |
OLD | NEW |