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