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

Unified Diff: webkit/glue/web_intent_reply_data_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/web_intent_reply_data.cc ('k') | webkit/glue/webfileutilities_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/glue/web_intent_reply_data_unittest.cc
diff --git a/webkit/glue/web_intent_reply_data_unittest.cc b/webkit/glue/web_intent_reply_data_unittest.cc
index a8aed519e3d851927fe8e62566f3aff3cb6e7cd8..bf7004cde6c6df4d2baac9aa376a5908ecc979cc 100644
--- a/webkit/glue/web_intent_reply_data_unittest.cc
+++ b/webkit/glue/web_intent_reply_data_unittest.cc
@@ -17,7 +17,7 @@ TEST(WebIntentReplyDataTest, DefaultValues) {
WebIntentReply reply;
EXPECT_EQ(webkit_glue::WEB_INTENT_REPLY_INVALID, reply.type);
EXPECT_EQ(string16(), reply.data);
- EXPECT_EQ(FilePath(), reply.data_file);
+ EXPECT_EQ(base::FilePath(), reply.data_file);
EXPECT_EQ(-1, reply.data_file_size);
}
@@ -39,17 +39,17 @@ TEST(WebIntentReplyDataTest, Equality) {
WebIntentReply file_a(
webkit_glue::WEB_INTENT_REPLY_SUCCESS,
- FilePath(),
+ base::FilePath(),
22);
WebIntentReply file_b(
webkit_glue::WEB_INTENT_REPLY_SUCCESS,
- FilePath(),
+ base::FilePath(),
22);
WebIntentReply file_c(
webkit_glue::WEB_INTENT_REPLY_SUCCESS,
- FilePath(),
+ base::FilePath(),
17);
EXPECT_EQ(file_a, file_b);
« no previous file with comments | « webkit/glue/web_intent_reply_data.cc ('k') | webkit/glue/webfileutilities_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698