| 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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 }; | 55 }; |
| 56 | 56 |
| 57 } // namespace | 57 } // namespace |
| 58 | 58 |
| 59 // static | 59 // static |
| 60 AppListService* AppListService::Get(chrome::HostDesktopType desktop_type) { | 60 AppListService* AppListService::Get(chrome::HostDesktopType desktop_type) { |
| 61 return AppListServiceDisabled::GetInstance(); | 61 return AppListServiceDisabled::GetInstance(); |
| 62 } | 62 } |
| 63 | 63 |
| 64 // static | 64 // static |
| 65 void AppListService::InitAll(Profile* initial_profile) {} | 65 void AppListService::InitAll(Profile* initial_profile, |
| 66 const base::FilePath& profile_path) {} |
| 66 | 67 |
| 67 // static | 68 // static |
| 68 void AppListService::RegisterPrefs(PrefRegistrySimple* registry) {} | 69 void AppListService::RegisterPrefs(PrefRegistrySimple* registry) {} |
| 69 | 70 |
| 70 // static | 71 // static |
| 71 bool AppListService::HandleLaunchCommandLine( | 72 bool AppListService::HandleLaunchCommandLine( |
| 72 const base::CommandLine& command_line, | 73 const base::CommandLine& command_line, |
| 73 Profile* launch_profile) { | 74 Profile* launch_profile) { |
| 74 return false; | 75 return false; |
| 75 } | 76 } |
| OLD | NEW |