| 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 15 matching lines...) Expand all Loading... |
| 26 virtual void Init(Profile* initial_profile) override {} | 26 virtual void Init(Profile* initial_profile) override {} |
| 27 | 27 |
| 28 virtual base::FilePath GetProfilePath( | 28 virtual base::FilePath GetProfilePath( |
| 29 const base::FilePath& user_data_dir) override { | 29 const base::FilePath& user_data_dir) override { |
| 30 return base::FilePath(); | 30 return base::FilePath(); |
| 31 } | 31 } |
| 32 virtual void SetProfilePath(const base::FilePath& profile_path) override {} | 32 virtual void SetProfilePath(const base::FilePath& profile_path) override {} |
| 33 | 33 |
| 34 virtual void Show() override {} | 34 virtual void Show() override {} |
| 35 virtual void ShowForProfile(Profile* profile) override {} | 35 virtual void ShowForProfile(Profile* profile) override {} |
| 36 virtual void ShowForVoiceSearch(Profile* profile) override {} |
| 36 virtual void ShowForAppInstall(Profile* profile, | 37 virtual void ShowForAppInstall(Profile* profile, |
| 37 const std::string& extension_id, | 38 const std::string& extension_id, |
| 38 bool start_discovery_tracking) override {} | 39 bool start_discovery_tracking) override {} |
| 39 virtual void DismissAppList() override {} | 40 virtual void DismissAppList() override {} |
| 40 | 41 |
| 41 virtual Profile* GetCurrentAppListProfile() override { return NULL; } | 42 virtual Profile* GetCurrentAppListProfile() override { return NULL; } |
| 42 virtual bool IsAppListVisible() const override { return false; } | 43 virtual bool IsAppListVisible() const override { return false; } |
| 43 virtual void EnableAppList(Profile* initial_profile, | 44 virtual void EnableAppList(Profile* initial_profile, |
| 44 AppListEnableSource enable_source) override {} | 45 AppListEnableSource enable_source) override {} |
| 45 virtual gfx::NativeWindow GetAppListWindow() override { return NULL; } | 46 virtual gfx::NativeWindow GetAppListWindow() override { return NULL; } |
| (...skipping 17 matching lines...) Expand all Loading... |
| 63 | 64 |
| 64 // static | 65 // static |
| 65 void AppListService::RegisterPrefs(PrefRegistrySimple* registry) {} | 66 void AppListService::RegisterPrefs(PrefRegistrySimple* registry) {} |
| 66 | 67 |
| 67 // static | 68 // static |
| 68 bool AppListService::HandleLaunchCommandLine( | 69 bool AppListService::HandleLaunchCommandLine( |
| 69 const base::CommandLine& command_line, | 70 const base::CommandLine& command_line, |
| 70 Profile* launch_profile) { | 71 Profile* launch_profile) { |
| 71 return false; | 72 return false; |
| 72 } | 73 } |
| OLD | NEW |