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 #include "base/files/file_path.h" | 5 #include "base/files/file_path.h" |
6 #include "base/memory/singleton.h" | 6 #include "base/memory/singleton.h" |
7 #include "chrome/browser/ui/app_list/app_list_service.h" | 7 #include "chrome/browser/ui/app_list/app_list_service.h" |
8 | 8 |
9 namespace { | 9 namespace { |
10 | 10 |
(...skipping 13 matching lines...) Expand all Loading... |
24 virtual void HandleFirstRun() OVERRIDE {} | 24 virtual void HandleFirstRun() OVERRIDE {} |
25 virtual void Init(Profile* initial_profile) OVERRIDE {} | 25 virtual void Init(Profile* initial_profile) OVERRIDE {} |
26 | 26 |
27 virtual base::FilePath GetProfilePath( | 27 virtual base::FilePath GetProfilePath( |
28 const base::FilePath& user_data_dir) OVERRIDE { | 28 const base::FilePath& user_data_dir) OVERRIDE { |
29 return base::FilePath(); | 29 return base::FilePath(); |
30 } | 30 } |
31 virtual void SetProfilePath(const base::FilePath& profile_path) OVERRIDE {} | 31 virtual void SetProfilePath(const base::FilePath& profile_path) OVERRIDE {} |
32 | 32 |
33 virtual void Show() OVERRIDE {} | 33 virtual void Show() OVERRIDE {} |
| 34 virtual void CreateForProfile(Profile* profile) OVERRIDE {} |
34 virtual void ShowForProfile(Profile* profile) OVERRIDE {} | 35 virtual void ShowForProfile(Profile* profile) OVERRIDE {} |
35 virtual void DismissAppList() OVERRIDE {} | 36 virtual void DismissAppList() OVERRIDE {} |
36 | 37 |
37 virtual Profile* GetCurrentAppListProfile() OVERRIDE { return NULL; } | 38 virtual Profile* GetCurrentAppListProfile() OVERRIDE { return NULL; } |
38 virtual bool IsAppListVisible() const OVERRIDE { return false; } | 39 virtual bool IsAppListVisible() const OVERRIDE { return false; } |
39 virtual void EnableAppList(Profile* initial_profile) OVERRIDE {} | 40 virtual void EnableAppList(Profile* initial_profile) OVERRIDE {} |
40 | 41 |
41 virtual AppListControllerDelegate* CreateControllerDelegate() OVERRIDE { | 42 virtual AppListControllerDelegate* CreateControllerDelegate() OVERRIDE { |
42 return NULL; | 43 return NULL; |
43 } | 44 } |
(...skipping 13 matching lines...) Expand all Loading... |
57 } | 58 } |
58 | 59 |
59 // static | 60 // static |
60 void AppListService::InitAll(Profile* initial_profile) {} | 61 void AppListService::InitAll(Profile* initial_profile) {} |
61 | 62 |
62 // static | 63 // static |
63 void AppListService::RegisterPrefs(PrefRegistrySimple* registry) {} | 64 void AppListService::RegisterPrefs(PrefRegistrySimple* registry) {} |
64 | 65 |
65 // static | 66 // static |
66 void AppListService::RecordShowTimings(const CommandLine& command_line) {} | 67 void AppListService::RecordShowTimings(const CommandLine& command_line) {} |
OLD | NEW |