diff options
author | naiem.shaik <naiem.shaik@gmail.com> | 2014-11-30 01:02:31 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-11-30 09:02:53 +0000 |
commit | b9f5bffad6a920c2f6139bc0e5f2bc91e8fc12b0 (patch) | |
tree | ddf30851265e82dcd3ffc42e0758b755a9a27508 /chrome/browser/history/android/urls_sql_handler_unittest.cc | |
parent | b5adb1e71466bf983f647047c13e76ae29546c2a (diff) | |
download | chromium_src-b9f5bffad6a920c2f6139bc0e5f2bc91e8fc12b0.zip chromium_src-b9f5bffad6a920c2f6139bc0e5f2bc91e8fc12b0.tar.gz chromium_src-b9f5bffad6a920c2f6139bc0e5f2bc91e8fc12b0.tar.bz2 |
Move constants used by history component to history namespace.
Add history_constants.cc/h for history specific constants.
BUG=390953
TEST=unit_tests
Review URL: https://codereview.chromium.org/722723005
Cr-Commit-Position: refs/heads/master@{#306130}
Diffstat (limited to 'chrome/browser/history/android/urls_sql_handler_unittest.cc')
-rw-r--r-- | chrome/browser/history/android/urls_sql_handler_unittest.cc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/chrome/browser/history/android/urls_sql_handler_unittest.cc b/chrome/browser/history/android/urls_sql_handler_unittest.cc index e3ccaf0..2c49755 100644 --- a/chrome/browser/history/android/urls_sql_handler_unittest.cc +++ b/chrome/browser/history/android/urls_sql_handler_unittest.cc @@ -13,6 +13,7 @@ #include "chrome/browser/history/android/visit_sql_handler.h" #include "chrome/browser/history/history_database.h" #include "chrome/common/chrome_constants.h" +#include "components/history/core/browser/history_constants.h" #include "testing/gtest/include/gtest/gtest.h" using base::Time; @@ -32,8 +33,8 @@ class UrlsSQLHandlerTest : public testing::Test { virtual void SetUp() { // Get a temporary directory for the test DB files. 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); ASSERT_EQ(sql::INIT_OK, history_db_.Init(history_db_name)); } |