Upstream version 11.39.266.0
[platform/framework/web/crosswalk.git] / src / chrome / browser / ui / app_list / search / history_data_store_unittest.cc
index 3d71554..43b7506 100644 (file)
@@ -4,11 +4,12 @@
 
 #include "base/basictypes.h"
 #include "base/bind.h"
-#include "base/file_util.h"
+#include "base/files/file_util.h"
 #include "base/files/scoped_temp_dir.h"
 #include "base/memory/ref_counted.h"
 #include "base/message_loop/message_loop.h"
 #include "base/run_loop.h"
+#include "chrome/browser/ui/app_list/search/common/dictionary_data_store.h"
 #include "chrome/browser/ui/app_list/search/history_data.h"
 #include "chrome/browser/ui/app_list/search/history_data_store.h"
 #include "content/public/test/test_browser_thread.h"
@@ -54,7 +55,8 @@ class HistoryDataStoreTest : public testing::Test {
 
   void OpenStore(const std::string& file_name) {
     data_file_ = temp_dir_.path().AppendASCII(file_name);
-    store_ = new HistoryDataStore(data_file_);
+    store_ = new HistoryDataStore(scoped_refptr<DictionaryDataStore>(
+        new DictionaryDataStore(data_file_)));
     Load();
   }
 
@@ -72,7 +74,7 @@ class HistoryDataStoreTest : public testing::Test {
 
   void WriteDataFile(const std::string& file_name,
                      const std::string& data) {
-    file_util::WriteFile(
+    base::WriteFile(
         temp_dir_.path().AppendASCII(file_name), data.c_str(), data.size());
   }