Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(277)

Side by Side Diff: chromeos/chromeos_paths.cc

Issue 555313002: Cleanup: Use base/files/file_util.h instead of base/file_util.h in ash/, athena/, and chromeos/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « chromeos/cert_loader_unittest.cc ('k') | chromeos/chromeos_test_utils.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « chromeos/cert_loader_unittest.cc ('k') | chromeos/chromeos_test_utils.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698