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

Side by Side Diff: chrome/browser/importer/firefox_importer_utils_win.cc

Issue 18286004: Move PathExists to base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 5 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 | Annotate | Revision Log
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 "chrome/browser/importer/firefox_importer_utils.h" 5 #include "chrome/browser/importer/firefox_importer_utils.h"
6 6
7 #include <shlobj.h> 7 #include <shlobj.h>
8 8
9 #include "base/file_util.h" 9 #include "base/file_util.h"
10 #include "base/path_service.h" 10 #include "base/path_service.h"
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 base::FilePath ini_file; 71 base::FilePath ini_file;
72 // The default location of the profile folder containing user data is 72 // The default location of the profile folder containing user data is
73 // under the "Application Data" folder in Windows XP, Vista, and 7. 73 // under the "Application Data" folder in Windows XP, Vista, and 7.
74 if (!PathService::Get(base::DIR_APP_DATA, &ini_file)) 74 if (!PathService::Get(base::DIR_APP_DATA, &ini_file))
75 return base::FilePath(); 75 return base::FilePath();
76 76
77 ini_file = ini_file.AppendASCII("Mozilla"); 77 ini_file = ini_file.AppendASCII("Mozilla");
78 ini_file = ini_file.AppendASCII("Firefox"); 78 ini_file = ini_file.AppendASCII("Firefox");
79 ini_file = ini_file.AppendASCII("profiles.ini"); 79 ini_file = ini_file.AppendASCII("profiles.ini");
80 80
81 return file_util::PathExists(ini_file) ? ini_file : base::FilePath(); 81 return base::PathExists(ini_file) ? ini_file : base::FilePath();
82 } 82 }
OLDNEW
« no previous file with comments | « chrome/browser/importer/firefox_importer_utils_mac.mm ('k') | chrome/browser/importer/firefox_profile_lock_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698