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

Unified Diff: chrome/browser/history/android/android_provider_backend_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/android_provider_backend_unittest.cc
diff --git a/chrome/browser/history/android/android_provider_backend_unittest.cc b/chrome/browser/history/android/android_provider_backend_unittest.cc
index c3b6748ca1188efb9aca494a3f3868e220979cf9..6c19eafcbf8caa2b189181555a6e850bf6f1084e 100644
--- a/chrome/browser/history/android/android_provider_backend_unittest.cc
+++ b/chrome/browser/history/android/android_provider_backend_unittest.cc
@@ -25,6 +25,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 "components/history/core/browser/keyword_search_term.h"
#include "content/public/browser/browser_thread.h"
#include "content/public/test/test_browser_thread.h"
@@ -191,9 +192,8 @@ class AndroidProviderBackendTest : public testing::Test {
// Setup the database directory and files.
ASSERT_TRUE(temp_dir_.CreateUniqueTempDir());
- history_db_name_ = temp_dir_.path().AppendASCII(chrome::kHistoryFilename);
- thumbnail_db_name_ = temp_dir_.path().AppendASCII(
- chrome::kFaviconsFilename);
+ history_db_name_ = temp_dir_.path().AppendASCII(kHistoryFilename);
+ thumbnail_db_name_ = temp_dir_.path().AppendASCII(kFaviconsFilename);
android_cache_db_name_ = temp_dir_.path().AppendASCII(
"TestAndroidCache.db");
}
« no previous file with comments | « chrome/browser/diagnostics/sqlite_diagnostics.cc ('k') | chrome/browser/history/android/android_urls_database_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698