diff options
author | dcheng@chromium.org <dcheng@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-04-09 06:27:43 +0000 |
---|---|---|
committer | dcheng@chromium.org <dcheng@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-04-09 06:27:43 +0000 |
commit | e3748a79b523a8d365d4a33ef986eebb4186fa78 (patch) | |
tree | a80c8db11d8d68ef1e6f79672c624feb633bb634 /webkit | |
parent | 558a35897f6b3ffbcaefde927c1f150b815d140a (diff) | |
download | chromium_src-e3748a79b523a8d365d4a33ef986eebb4186fa78.zip chromium_src-e3748a79b523a8d365d4a33ef986eebb4186fa78.tar.gz chromium_src-e3748a79b523a8d365d4a33ef986eebb4186fa78.tar.bz2 |
Really fix build after r193020.
Argh. Macros are evil.
BUG=
TBR=darin
Review URL: https://codereview.chromium.org/13937002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@193029 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit')
-rw-r--r-- | webkit/fileapi/file_system_util_unittest.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/webkit/fileapi/file_system_util_unittest.cc b/webkit/fileapi/file_system_util_unittest.cc index 74fc764..1c129bd 100644 --- a/webkit/fileapi/file_system_util_unittest.cc +++ b/webkit/fileapi/file_system_util_unittest.cc @@ -115,7 +115,7 @@ TEST_F(FileSystemUtilTest, GetNormalizedFilePath) { TEST_F(FileSystemUtilTest, IsAbsolutePath) { EXPECT_TRUE(VirtualPath::IsAbsolute(FILE_PATH_LITERAL("/"))); EXPECT_TRUE(VirtualPath::IsAbsolute(FILE_PATH_LITERAL("/foo/bar"))); - EXPECT_FALSE(VirtualPath::IsAbsolute(FILE_PATH_LITERAL(std::string()))); + EXPECT_FALSE(VirtualPath::IsAbsolute(base::FilePath::StringType())); EXPECT_FALSE(VirtualPath::IsAbsolute(FILE_PATH_LITERAL("foo/bar"))); } |