diff options
author | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-07-29 06:46:39 +0000 |
---|---|---|
committer | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-07-29 06:46:39 +0000 |
commit | 33b9df45937ce5fc436ac702352606cd12ef0951 (patch) | |
tree | 92a209b1934e93a663b367f45bdf6597068720eb /chrome/browser/history | |
parent | 13c8a0903376ff406151679d8673a6452d721290 (diff) | |
download | chromium_src-33b9df45937ce5fc436ac702352606cd12ef0951.zip chromium_src-33b9df45937ce5fc436ac702352606cd12ef0951.tar.gz chromium_src-33b9df45937ce5fc436ac702352606cd12ef0951.tar.bz2 |
Cleanup: Remove unneeded headers from app/
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/2819063
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54102 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/history')
-rw-r--r-- | chrome/browser/history/archived_database.cc | 1 | ||||
-rw-r--r-- | chrome/browser/history/download_database.cc | 1 | ||||
-rw-r--r-- | chrome/browser/history/history.cc | 2 | ||||
-rw-r--r-- | chrome/browser/history/starred_url_database.cc | 1 | ||||
-rw-r--r-- | chrome/browser/history/text_database.cc | 1 | ||||
-rw-r--r-- | chrome/browser/history/url_database.cc | 1 | ||||
-rw-r--r-- | chrome/browser/history/visit_database.cc | 1 | ||||
-rw-r--r-- | chrome/browser/history/visitsegment_database.cc | 1 |
8 files changed, 1 insertions, 8 deletions
diff --git a/chrome/browser/history/archived_database.cc b/chrome/browser/history/archived_database.cc index 1b9e010..777ee4d 100644 --- a/chrome/browser/history/archived_database.cc +++ b/chrome/browser/history/archived_database.cc @@ -5,7 +5,6 @@ #include <algorithm> #include <string> -#include "app/sql/statement.h" #include "app/sql/transaction.h" #include "base/string_util.h" #include "chrome/browser/history/archived_database.h" diff --git a/chrome/browser/history/download_database.cc b/chrome/browser/history/download_database.cc index aa3dbde..62853a8 100644 --- a/chrome/browser/history/download_database.cc +++ b/chrome/browser/history/download_database.cc @@ -7,7 +7,6 @@ #include <limits> #include <vector> -#include "app/sql/connection.h" #include "app/sql/statement.h" #include "base/file_path.h" #include "base/utf_string_conversions.h" diff --git a/chrome/browser/history/history.cc b/chrome/browser/history/history.cc index 0b92b6f..aaec4207 100644 --- a/chrome/browser/history/history.cc +++ b/chrome/browser/history/history.cc @@ -24,11 +24,11 @@ #include "chrome/browser/history/history.h" -#include "app/l10n_util.h" #include "base/callback.h" #include "base/message_loop.h" #include "base/path_service.h" #include "base/ref_counted.h" +#include "base/string_util.h" #include "base/task.h" #include "chrome/browser/autocomplete/history_url_provider.h" #include "chrome/browser/browser_list.h" diff --git a/chrome/browser/history/starred_url_database.cc b/chrome/browser/history/starred_url_database.cc index cf2a306..2ba3156 100644 --- a/chrome/browser/history/starred_url_database.cc +++ b/chrome/browser/history/starred_url_database.cc @@ -4,7 +4,6 @@ #include "chrome/browser/history/starred_url_database.h" -#include "app/sql/connection.h" #include "app/sql/statement.h" #include "base/file_util.h" #include "base/logging.h" diff --git a/chrome/browser/history/text_database.cc b/chrome/browser/history/text_database.cc index 3327869..f2ae15b 100644 --- a/chrome/browser/history/text_database.cc +++ b/chrome/browser/history/text_database.cc @@ -8,7 +8,6 @@ #include "chrome/browser/history/text_database.h" -#include "app/sql/connection.h" #include "app/sql/statement.h" #include "app/sql/transaction.h" #include "base/file_util.h" diff --git a/chrome/browser/history/url_database.cc b/chrome/browser/history/url_database.cc index 07f8881..3c4e3be 100644 --- a/chrome/browser/history/url_database.cc +++ b/chrome/browser/history/url_database.cc @@ -10,7 +10,6 @@ #include <vector> #include "app/l10n_util.h" -#include "app/sql/connection.h" #include "app/sql/statement.h" #include "base/utf_string_conversions.h" #include "chrome/common/url_constants.h" diff --git a/chrome/browser/history/visit_database.cc b/chrome/browser/history/visit_database.cc index 80fa8c8..75c91ee 100644 --- a/chrome/browser/history/visit_database.cc +++ b/chrome/browser/history/visit_database.cc @@ -9,7 +9,6 @@ #include <map> #include <set> -#include "app/sql/connection.h" #include "app/sql/statement.h" #include "base/logging.h" #include "chrome/browser/history/url_database.h" diff --git a/chrome/browser/history/visitsegment_database.cc b/chrome/browser/history/visitsegment_database.cc index f94d713..f4c4f9f 100644 --- a/chrome/browser/history/visitsegment_database.cc +++ b/chrome/browser/history/visitsegment_database.cc @@ -10,7 +10,6 @@ #include <string> #include <vector> -#include "app/sql/connection.h" #include "app/sql/statement.h" #include "base/logging.h" #include "base/stl_util-inl.h" |