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

Side by Side Diff: ui/gfx/gfx_paths.cc

Issue 529273002: Change base/file_utils.h includes to base/files/file_utils.h in gin, google_apis, printing, sql, ui… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase 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 | « ui/gfx/color_profile_win.cc ('k') | ui/gfx/icon_util.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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 "ui/gfx/gfx_paths.h" 5 #include "ui/gfx/gfx_paths.h"
6 6
7 #include "base/command_line.h" 7 #include "base/command_line.h"
8 #include "base/file_util.h"
9 #include "base/files/file_path.h" 8 #include "base/files/file_path.h"
9 #include "base/files/file_util.h"
10 #include "base/path_service.h" 10 #include "base/path_service.h"
11 11
12 namespace gfx { 12 namespace gfx {
13 13
14 bool PathProvider(int key, base::FilePath* result) { 14 bool PathProvider(int key, base::FilePath* result) {
15 base::FilePath cur; 15 base::FilePath cur;
16 switch (key) { 16 switch (key) {
17 // The following are only valid in the development environment, and 17 // The following are only valid in the development environment, and
18 // will fail if executed from an installed executable (because the 18 // will fail if executed from an installed executable (because the
19 // generated path won't exist). 19 // generated path won't exist).
(...skipping 15 matching lines...) Expand all
35 return true; 35 return true;
36 } 36 }
37 37
38 // This cannot be done as a static initializer sadly since Visual Studio will 38 // This cannot be done as a static initializer sadly since Visual Studio will
39 // eliminate this object file if there is no direct entry point into it. 39 // eliminate this object file if there is no direct entry point into it.
40 void RegisterPathProvider() { 40 void RegisterPathProvider() {
41 PathService::RegisterProvider(PathProvider, PATH_START, PATH_END); 41 PathService::RegisterProvider(PathProvider, PATH_START, PATH_END);
42 } 42 }
43 43
44 } // namespace gfx 44 } // namespace gfx
OLDNEW
« no previous file with comments | « ui/gfx/color_profile_win.cc ('k') | ui/gfx/icon_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698