| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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 "chromeos/chromeos_paths.h" | 5 #include "chromeos/chromeos_paths.h" |
| 6 | 6 |
| 7 #include "base/file_util.h" | |
| 8 #include "base/files/file_path.h" | 7 #include "base/files/file_path.h" |
| 8 #include "base/files/file_util.h" |
| 9 #include "base/path_service.h" | 9 #include "base/path_service.h" |
| 10 #include "base/sys_info.h" | 10 #include "base/sys_info.h" |
| 11 | 11 |
| 12 namespace chromeos { | 12 namespace chromeos { |
| 13 | 13 |
| 14 namespace { | 14 namespace { |
| 15 | 15 |
| 16 const base::FilePath::CharType kDefaultAppOrderFileName[] = | 16 const base::FilePath::CharType kDefaultAppOrderFileName[] = |
| 17 #if defined(GOOGLE_CHROME_BUILD) | 17 #if defined(GOOGLE_CHROME_BUILD) |
| 18 FILE_PATH_LITERAL("/usr/share/google-chrome/default_app_order.json"); | 18 FILE_PATH_LITERAL("/usr/share/google-chrome/default_app_order.json"); |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 parent.AppendASCII("stub_device_local_account_extensions")); | 110 parent.AppendASCII("stub_device_local_account_extensions")); |
| 111 PathService::Override( | 111 PathService::Override( |
| 112 DIR_DEVICE_LOCAL_ACCOUNT_EXTERNAL_DATA, | 112 DIR_DEVICE_LOCAL_ACCOUNT_EXTERNAL_DATA, |
| 113 parent.AppendASCII("stub_device_local_account_external_data")); | 113 parent.AppendASCII("stub_device_local_account_external_data")); |
| 114 PathService::Override( | 114 PathService::Override( |
| 115 DIR_DEVICE_LOCAL_ACCOUNT_COMPONENT_POLICY, | 115 DIR_DEVICE_LOCAL_ACCOUNT_COMPONENT_POLICY, |
| 116 parent.AppendASCII("stub_device_local_account_component_policy")); | 116 parent.AppendASCII("stub_device_local_account_component_policy")); |
| 117 } | 117 } |
| 118 | 118 |
| 119 } // namespace chromeos | 119 } // namespace chromeos |
| OLD | NEW |