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

Side by Side Diff: content/common/content_paths.cc

Issue 538403002: Change base/file_utils.h includes to base/files/file_utils.h in content/ (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 | « content/child/webfileutilities_impl.cc ('k') | content/common/font_config_ipc_linux.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) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 "content/public/common/content_paths.h" 5 #include "content/public/common/content_paths.h"
6 6
7 #include "base/file_util.h" 7 #include "base/files/file_util.h"
8 #include "base/mac/bundle_locations.h" 8 #include "base/mac/bundle_locations.h"
9 #include "base/path_service.h" 9 #include "base/path_service.h"
10 10
11 namespace content { 11 namespace content {
12 12
13 bool PathProvider(int key, base::FilePath* result) { 13 bool PathProvider(int key, base::FilePath* result) {
14 switch (key) { 14 switch (key) {
15 case CHILD_PROCESS_EXE: 15 case CHILD_PROCESS_EXE:
16 return PathService::Get(base::FILE_EXE, result); 16 return PathService::Get(base::FILE_EXE, result);
17 case DIR_TEST_DATA: { 17 case DIR_TEST_DATA: {
(...skipping 23 matching lines...) Expand all
41 } 41 }
42 } 42 }
43 43
44 // This cannot be done as a static initializer sadly since Visual Studio will 44 // This cannot be done as a static initializer sadly since Visual Studio will
45 // eliminate this object file if there is no direct entry point into it. 45 // eliminate this object file if there is no direct entry point into it.
46 void RegisterPathProvider() { 46 void RegisterPathProvider() {
47 PathService::RegisterProvider(PathProvider, PATH_START, PATH_END); 47 PathService::RegisterProvider(PathProvider, PATH_START, PATH_END);
48 } 48 }
49 49
50 } // namespace content 50 } // namespace content
OLDNEW
« no previous file with comments | « content/child/webfileutilities_impl.cc ('k') | content/common/font_config_ipc_linux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698