| Index: webkit/dom_storage/dom_storage_context_unittest.cc
 | 
| diff --git a/webkit/dom_storage/dom_storage_context_unittest.cc b/webkit/dom_storage/dom_storage_context_unittest.cc
 | 
| index 39e82529a5c88b875ddc8f06e23aa4c1bb87f5b7..f2bebc15c95734b317cb74b5f82d7d489d17b5ce 100644
 | 
| --- a/webkit/dom_storage/dom_storage_context_unittest.cc
 | 
| +++ b/webkit/dom_storage/dom_storage_context_unittest.cc
 | 
| @@ -42,7 +42,7 @@ class DomStorageContextTest : public testing::Test {
 | 
|      task_runner_ = new MockDomStorageTaskRunner(
 | 
|              base::MessageLoopProxy::current());
 | 
|      context_ = new DomStorageContext(temp_dir_.path(),
 | 
| -                                     FilePath(),
 | 
| +                                     base::FilePath(),
 | 
|                                       storage_policy_,
 | 
|                                       task_runner_);
 | 
|    }
 | 
| @@ -54,7 +54,7 @@ class DomStorageContextTest : public testing::Test {
 | 
|    void VerifySingleOriginRemains(const GURL& origin) {
 | 
|      // Use a new instance to examine the contexts of temp_dir_.
 | 
|      scoped_refptr<DomStorageContext> context =
 | 
| -        new DomStorageContext(temp_dir_.path(), FilePath(), NULL, NULL);
 | 
| +        new DomStorageContext(temp_dir_.path(), base::FilePath(), NULL, NULL);
 | 
|      std::vector<LocalStorageUsageInfo> infos;
 | 
|      context->GetLocalStorageUsage(&infos, kDontIncludeFileInfo);
 | 
|      ASSERT_EQ(1u, infos.size());
 | 
| @@ -75,7 +75,7 @@ TEST_F(DomStorageContextTest, Basics) {
 | 
|    // initializes members properly and that invoking methods
 | 
|    // on a newly created object w/o any data on disk do no harm.
 | 
|    EXPECT_EQ(temp_dir_.path(), context_->localstorage_directory());
 | 
| -  EXPECT_EQ(FilePath(), context_->sessionstorage_directory());
 | 
| +  EXPECT_EQ(base::FilePath(), context_->sessionstorage_directory());
 | 
|    EXPECT_EQ(storage_policy_.get(), context_->special_storage_policy_.get());
 | 
|    context_->PurgeMemory();
 | 
|    context_->DeleteLocalStorage(GURL("http://chromium.org/"));
 | 
| @@ -108,7 +108,7 @@ TEST_F(DomStorageContextTest, UsageInfo) {
 | 
|  
 | 
|    // Create a new context that points to the same directory, see that
 | 
|    // it knows about the origin that we stored data for.
 | 
| -  context_ = new DomStorageContext(temp_dir_.path(), FilePath(), NULL, NULL);
 | 
| +  context_ = new DomStorageContext(temp_dir_.path(), base::FilePath(), NULL, NULL);
 | 
|    context_->GetLocalStorageUsage(&infos, kDontIncludeFileInfo);
 | 
|    EXPECT_EQ(1u, infos.size());
 | 
|    EXPECT_EQ(kOrigin, infos[0].origin);
 | 
| 
 |