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

Unified Diff: webkit/glue/glue_serialize_unittest.cc

Issue 12163003: Add FilePath to base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webkit/glue/glue_serialize.cc ('k') | webkit/glue/resource_loader_bridge.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/glue/glue_serialize_unittest.cc
diff --git a/webkit/glue/glue_serialize_unittest.cc b/webkit/glue/glue_serialize_unittest.cc
index 91916efa46e30697e360e44fc6f01fbbc08443c4..250dceac0304b03ca3ac2d94bf3b515f07f52d37 100644
--- a/webkit/glue/glue_serialize_unittest.cc
+++ b/webkit/glue/glue_serialize_unittest.cc
@@ -265,8 +265,8 @@ TEST_F(GlueSerializeTest, FilePathsFromHistoryState) {
WebHistoryItem item = MakeHistoryItem(false, true);
// Append file paths to item.
- FilePath file_path1(FILE_PATH_LITERAL("file.txt"));
- FilePath file_path2(FILE_PATH_LITERAL("another_file"));
+ base::FilePath file_path1(FILE_PATH_LITERAL("file.txt"));
+ base::FilePath file_path2(FILE_PATH_LITERAL("another_file"));
WebHTTPBody http_body;
http_body.initialize();
http_body.appendFile(webkit_base::FilePathToWebString(file_path1));
@@ -274,7 +274,7 @@ TEST_F(GlueSerializeTest, FilePathsFromHistoryState) {
item.setHTTPBody(http_body);
std::string serialized_item = webkit_glue::HistoryItemToString(item);
- const std::vector<FilePath>& file_paths =
+ const std::vector<base::FilePath>& file_paths =
webkit_glue::FilePathsFromHistoryState(serialized_item);
ASSERT_EQ(2U, file_paths.size());
EXPECT_EQ(file_path1, file_paths[0]);
« no previous file with comments | « webkit/glue/glue_serialize.cc ('k') | webkit/glue/resource_loader_bridge.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698