| 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);
|
|
|