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

Unified Diff: chrome/browser/history/android/bookmark_model_sql_handler_unittest.cc

Issue 722723005: Move constants used by history component to history namespace (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix android build failures Created 6 years, 1 month 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
Index: chrome/browser/history/android/bookmark_model_sql_handler_unittest.cc
diff --git a/chrome/browser/history/android/bookmark_model_sql_handler_unittest.cc b/chrome/browser/history/android/bookmark_model_sql_handler_unittest.cc
index 55fcd8a2052e6ea9548743a200e93612275710f9..cbbc4e428066bf051df5f9421f5e1f5b3578191e 100644
--- a/chrome/browser/history/android/bookmark_model_sql_handler_unittest.cc
+++ b/chrome/browser/history/android/bookmark_model_sql_handler_unittest.cc
@@ -15,6 +15,7 @@
#include "chrome/test/base/testing_profile_manager.h"
#include "components/bookmarks/browser/bookmark_model.h"
#include "components/bookmarks/test/bookmark_test_helpers.h"
+#include "components/history/core/browser/history_constants.h"
#include "content/public/browser/browser_thread.h"
#include "content/public/test/test_browser_thread.h"
#include "content/public/test/test_utils.h"
@@ -56,8 +57,8 @@ class BookmarkModelSQLHandlerTest : public testing::Test {
// Create the directory for history database.
ASSERT_TRUE(temp_dir_.CreateUniqueTempDir());
- base::FilePath history_db_name = temp_dir_.path().AppendASCII(
- chrome::kHistoryFilename);
+ base::FilePath history_db_name =
+ temp_dir_.path().AppendASCII(kHistoryFilename);
history_db_.Init(history_db_name);
}

Powered by Google App Engine
This is Rietveld 408576698