summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormsw@chromium.org <msw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-02-19 09:16:13 +0000
committermsw@chromium.org <msw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-02-19 09:16:13 +0000
commit17f11acdd97a180ff538d874ed1558a65f637e42 (patch)
treed669404aa86cb99411dd75afcf9f6595d182fec3
parent2b1cbc99f6270a67503e0164a80f4c2f86509afc (diff)
downloadchromium_src-17f11acdd97a180ff538d874ed1558a65f637e42.zip
chromium_src-17f11acdd97a180ff538d874ed1558a65f637e42.tar.gz
chromium_src-17f11acdd97a180ff538d874ed1558a65f637e42.tar.bz2
Add base:: qualifiers for FilePath uses.
Fixing missed FilePath uses from http::crrev.com/183170 http://build.chromium.org/p/chromium.chrome/buildstatus?builder=Google%20Chrome%20Win&number=16539 http://build.chromium.org/p/chromium.chrome/buildstatus?builder=Google%20Chrome%20ChromeOS&number=49472 It seems like the bots aren't tree closers, so I'm fixing it live. BUG=NONE TEST=chromium.chrome builders pass compile. TBR=brettw@chromium.org,jar@chromium.org Review URL: https://codereview.chromium.org/12298030 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@183187 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--remoting/host/desktop_process_main.cc2
-rw-r--r--remoting/host/remoting_me2me_host.cc2
-rw-r--r--remoting/host/win/daemon_process_main.cc2
-rw-r--r--rlz/chromeos/lib/rlz_value_store_chromeos.cc6
4 files changed, 6 insertions, 6 deletions
diff --git a/remoting/host/desktop_process_main.cc b/remoting/host/desktop_process_main.cc
index b1a7433..0b121d3 100644
--- a/remoting/host/desktop_process_main.cc
+++ b/remoting/host/desktop_process_main.cc
@@ -94,7 +94,7 @@ int DesktopProcessMain(int argc, char** argv) {
// Mark the process as DPI-aware, so Windows won't scale coordinates in APIs.
// N.B. This API exists on Vista and above.
if (base::win::GetVersion() >= base::win::VERSION_VISTA) {
- FilePath path(base::GetNativeLibraryName(UTF8ToUTF16("user32")));
+ base::FilePath path(base::GetNativeLibraryName(UTF8ToUTF16("user32")));
base::ScopedNativeLibrary user32(path);
CHECK(user32.is_valid());
diff --git a/remoting/host/remoting_me2me_host.cc b/remoting/host/remoting_me2me_host.cc
index 708868c..d676b8f 100644
--- a/remoting/host/remoting_me2me_host.cc
+++ b/remoting/host/remoting_me2me_host.cc
@@ -1106,7 +1106,7 @@ int HostProcessMain(int argc, char** argv) {
// Mark the process as DPI-aware, so Windows won't scale coordinates in APIs.
// N.B. This API exists on Vista and above.
if (base::win::GetVersion() >= base::win::VERSION_VISTA) {
- FilePath path(base::GetNativeLibraryName(UTF8ToUTF16("user32")));
+ base::FilePath path(base::GetNativeLibraryName(UTF8ToUTF16("user32")));
base::ScopedNativeLibrary user32(path);
CHECK(user32.is_valid());
diff --git a/remoting/host/win/daemon_process_main.cc b/remoting/host/win/daemon_process_main.cc
index e7c2795..43b4d0c 100644
--- a/remoting/host/win/daemon_process_main.cc
+++ b/remoting/host/win/daemon_process_main.cc
@@ -44,7 +44,7 @@ const wchar_t kUsageMessage[] =
const char* kCopiedSwitchNames[] = {
"host-config", "daemon-pipe", switches::kV, switches::kVModule };
-void usage(const FilePath& program_name) {
+void usage(const base::FilePath& program_name) {
LOG(INFO) << StringPrintf(kUsageMessage,
UTF16ToWide(program_name.value()).c_str());
}
diff --git a/rlz/chromeos/lib/rlz_value_store_chromeos.cc b/rlz/chromeos/lib/rlz_value_store_chromeos.cc
index 31577cc..47e32d1 100644
--- a/rlz/chromeos/lib/rlz_value_store_chromeos.cc
+++ b/rlz/chromeos/lib/rlz_value_store_chromeos.cc
@@ -42,17 +42,17 @@ const base::FilePath::CharType kRLZLockFileName[] =
FILE_PATH_LITERAL("RLZ Data.lock");
// RLZ store path for testing.
-FilePath g_testing_rlz_store_path_;
+base::FilePath g_testing_rlz_store_path_;
// Returns file path of the RLZ storage.
-FilePath GetRlzStorePath() {
+base::FilePath GetRlzStorePath() {
return g_testing_rlz_store_path_.empty() ?
file_util::GetHomeDir().Append(kRLZDataFileName) :
g_testing_rlz_store_path_.Append(kRLZDataFileName);
}
// Returns file path of the RLZ storage lock file.
-FilePath GetRlzStoreLockPath() {
+base::FilePath GetRlzStoreLockPath() {
return g_testing_rlz_store_path_.empty() ?
file_util::GetHomeDir().Append(kRLZLockFileName) :
g_testing_rlz_store_path_.Append(kRLZLockFileName);