diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-02-07 19:21:48 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-02-07 19:21:48 +0000 |
commit | a732916421eb01c3a06187bf3e077e8ce0dd5912 (patch) | |
tree | 4981b7c3ceb04be445f093c1a7689107725f736e /chrome/common/extensions/extension_set_unittest.cc | |
parent | 2dec8ec385e65c80571c5723dc572264a934b7c9 (diff) | |
download | chromium_src-a732916421eb01c3a06187bf3e077e8ce0dd5912.zip chromium_src-a732916421eb01c3a06187bf3e077e8ce0dd5912.tar.gz chromium_src-a732916421eb01c3a06187bf3e077e8ce0dd5912.tar.bz2 |
Use base namespace for FilePath in chrome/common and content/common.
Review URL: https://codereview.chromium.org/12210058
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@181350 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/extensions/extension_set_unittest.cc')
-rw-r--r-- | chrome/common/extensions/extension_set_unittest.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/common/extensions/extension_set_unittest.cc b/chrome/common/extensions/extension_set_unittest.cc index ba2649b..2d28e65 100644 --- a/chrome/common/extensions/extension_set_unittest.cc +++ b/chrome/common/extensions/extension_set_unittest.cc @@ -19,9 +19,9 @@ scoped_refptr<Extension> CreateTestExtension(const std::string& name, const std::string& launch_url, const std::string& extent) { #if defined(OS_WIN) - FilePath path(FILE_PATH_LITERAL("c:\\")); + base::FilePath path(FILE_PATH_LITERAL("c:\\")); #else - FilePath path(FILE_PATH_LITERAL("/")); + base::FilePath path(FILE_PATH_LITERAL("/")); #endif path = path.AppendASCII(name); |