diff options
author | kaiwang@chromium.org <kaiwang@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-09-20 17:52:48 +0000 |
---|---|---|
committer | kaiwang@chromium.org <kaiwang@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-09-20 17:52:48 +0000 |
commit | a7228f6379b0981c7862498825f221c18263c882 (patch) | |
tree | ba6c1eaa9b7b571b2286d21c227c29a7994b95e9 /chrome/browser/history/android | |
parent | a7c078b8365d73bc20015bed374bd6c929d5dca9 (diff) | |
download | chromium_src-a7228f6379b0981c7862498825f221c18263c882.zip chromium_src-a7228f6379b0981c7862498825f221c18263c882.tar.gz chromium_src-a7228f6379b0981c7862498825f221c18263c882.tar.bz2 |
introduce chrome/browser/common directory and move url_database(and its dependencies)
This is a copy of https://src.chromium.org/viewvc/chrome?view=rev&revision=157475
c/b/common dir is for utility/library code shared by chrome browser code.
BUG=144783
TBR=joi,ben
Review URL: https://codereview.chromium.org/10948045
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@157796 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/history/android')
-rw-r--r-- | chrome/browser/history/android/android_history_types.h | 2 | ||||
-rw-r--r-- | chrome/browser/history/android/bookmark_model_sql_handler.cc | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/history/android/android_history_types.h b/chrome/browser/history/android/android_history_types.h index 843f465..a385d6a 100644 --- a/chrome/browser/history/android/android_history_types.h +++ b/chrome/browser/history/android/android_history_types.h @@ -9,7 +9,7 @@ #include "base/memory/scoped_ptr.h" #include "chrome/browser/history/history_types.h" -#include "chrome/browser/search_engines/template_url_id.h" +#include "chrome/browser/common/url_database/template_url_id.h" #include "sql/statement.h" namespace sql { diff --git a/chrome/browser/history/android/bookmark_model_sql_handler.cc b/chrome/browser/history/android/bookmark_model_sql_handler.cc index 35cdda3..852caae 100644 --- a/chrome/browser/history/android/bookmark_model_sql_handler.cc +++ b/chrome/browser/history/android/bookmark_model_sql_handler.cc @@ -9,7 +9,7 @@ #include "chrome/browser/bookmarks/bookmark_model.h" #include "chrome/browser/bookmarks/bookmark_model_factory.h" #include "chrome/browser/browser_process.h" -#include "chrome/browser/history/url_database.h" +#include "chrome/browser/common/url_database/url_database.h" #include "chrome/browser/profiles/profile_manager.h" #include "content/public/browser/browser_thread.h" |