diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-02-17 05:07:23 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-02-17 05:07:23 +0000 |
commit | 023ad6abe4b833b9478992176b13b5a073895cdc (patch) | |
tree | 2f73c09690e0ccd85fff810c7db4404a5245aeca /remoting/base | |
parent | 9e784dabf6278e848f081c7c24137ef8cc03671b (diff) | |
download | chromium_src-023ad6abe4b833b9478992176b13b5a073895cdc.zip chromium_src-023ad6abe4b833b9478992176b13b5a073895cdc.tar.gz chromium_src-023ad6abe4b833b9478992176b13b5a073895cdc.tar.bz2 |
Replace FilePath with base::FilePath.
This is im preparation for removing the 'using" in file_path.h
Review URL: https://codereview.chromium.org/12286020
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@183021 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/base')
-rw-r--r-- | remoting/base/resources.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/remoting/base/resources.cc b/remoting/base/resources.cc index a43e328..e10659d3 100644 --- a/remoting/base/resources.cc +++ b/remoting/base/resources.cc @@ -18,7 +18,7 @@ const char kCommonResourcesFileName[] = "chrome_remote_desktop.pak"; // Loads chromoting resources. bool LoadResources(const std::string& pref_locale) { - FilePath path; + base::FilePath path; if (!PathService::Get(base::DIR_MODULE, &path)) return false; |