diff options
author | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-05-05 03:31:44 +0000 |
---|---|---|
committer | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-05-05 03:31:44 +0000 |
commit | 80720414325af11e0dccedaf8c8f65998f91ec76 (patch) | |
tree | b834366724189756614a45ada157e8021c33f8a3 /chrome/browser/history | |
parent | e515f5de833d9298682570fd2f70abb16d032912 (diff) | |
download | chromium_src-80720414325af11e0dccedaf8c8f65998f91ec76.zip chromium_src-80720414325af11e0dccedaf8c8f65998f91ec76.tar.gz chromium_src-80720414325af11e0dccedaf8c8f65998f91ec76.tar.bz2 |
Move scoped_vector.h and stl_util-inl.h to base/
http://crbug.com/11387
Review URL: http://codereview.chromium.org/107001
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@15272 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/history')
-rw-r--r-- | chrome/browser/history/history_backend.h | 2 | ||||
-rw-r--r-- | chrome/browser/history/history_marshaling.h | 2 | ||||
-rw-r--r-- | chrome/browser/history/history_types.h | 2 | ||||
-rw-r--r-- | chrome/browser/history/history_unittest.cc | 2 | ||||
-rw-r--r-- | chrome/browser/history/query_parser.cc | 2 | ||||
-rw-r--r-- | chrome/browser/history/query_parser_unittest.cc | 4 | ||||
-rw-r--r-- | chrome/browser/history/starred_url_database.cc | 4 |
7 files changed, 9 insertions, 9 deletions
diff --git a/chrome/browser/history/history_backend.h b/chrome/browser/history/history_backend.h index d8af551..1e08bab 100644 --- a/chrome/browser/history/history_backend.h +++ b/chrome/browser/history/history_backend.h @@ -11,6 +11,7 @@ #include "base/file_path.h" #include "base/lock.h" #include "base/scoped_ptr.h" +#include "base/scoped_vector.h" #include "base/task.h" #include "chrome/browser/history/archived_database.h" #include "chrome/browser/history/download_types.h" @@ -23,7 +24,6 @@ #include "chrome/browser/history/thumbnail_database.h" #include "chrome/browser/history/visit_tracker.h" #include "chrome/common/mru_cache.h" -#include "chrome/common/scoped_vector.h" #include "testing/gtest/include/gtest/gtest_prod.h" class BookmarkService; diff --git a/chrome/browser/history/history_marshaling.h b/chrome/browser/history/history_marshaling.h index 86719b5..bf558c8 100644 --- a/chrome/browser/history/history_marshaling.h +++ b/chrome/browser/history/history_marshaling.h @@ -8,10 +8,10 @@ #ifndef CHROME_BROWSER_HISTORY_HISTORY_MARSHALING_H__ #define CHROME_BROWSER_HISTORY_HISTORY_MARSHALING_H__ +#include "base/scoped_vector.h" #include "chrome/browser/cancelable_request.h" #include "chrome/browser/history/history.h" #include "chrome/browser/history/page_usage_data.h" -#include "chrome/common/scoped_vector.h" namespace history { diff --git a/chrome/browser/history/history_types.h b/chrome/browser/history/history_types.h index 62d737d..7a973ba 100644 --- a/chrome/browser/history/history_types.h +++ b/chrome/browser/history/history_types.h @@ -13,10 +13,10 @@ #include "base/basictypes.h" #include "base/gfx/rect.h" #include "base/stack_container.h" +#include "base/stl_util-inl.h" #include "base/time.h" #include "chrome/browser/history/snippet.h" #include "chrome/common/page_transition_types.h" -#include "chrome/common/stl_util-inl.h" #include "googleurl/src/gurl.h" namespace history { diff --git a/chrome/browser/history/history_unittest.cc b/chrome/browser/history/history_unittest.cc index ed5e4e9..2474e6c 100644 --- a/chrome/browser/history/history_unittest.cc +++ b/chrome/browser/history/history_unittest.cc @@ -26,6 +26,7 @@ #include "base/gfx/jpeg_codec.h" #include "base/message_loop.h" #include "base/path_service.h" +#include "base/scoped_vector.h" #include "base/string_util.h" #include "base/task.h" #include "chrome/browser/browser_process.h" @@ -39,7 +40,6 @@ #include "chrome/common/chrome_paths.h" #include "chrome/common/notification_service.h" #include "chrome/common/sqlite_utils.h" -#include "chrome/common/scoped_vector.h" #include "chrome/common/thumbnail_score.h" #include "chrome/tools/profiles/thumbnail-inl.h" #include "testing/gtest/include/gtest/gtest.h" diff --git a/chrome/browser/history/query_parser.cc b/chrome/browser/history/query_parser.cc index 3f80f7f..8c3a2f3 100644 --- a/chrome/browser/history/query_parser.cc +++ b/chrome/browser/history/query_parser.cc @@ -7,10 +7,10 @@ #include "chrome/browser/history/query_parser.h" #include "base/logging.h" +#include "base/scoped_vector.h" #include "base/string_util.h" #include "base/word_iterator.h" #include "chrome/common/l10n_util.h" -#include "chrome/common/scoped_vector.h" #include "unicode/uscript.h" namespace { diff --git a/chrome/browser/history/query_parser_unittest.cc b/chrome/browser/history/query_parser_unittest.cc index 5a97fec..9245cc9 100644 --- a/chrome/browser/history/query_parser_unittest.cc +++ b/chrome/browser/history/query_parser_unittest.cc @@ -2,9 +2,9 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#include "chrome/browser/history/query_parser.h" #include "base/basictypes.h" -#include "chrome/common/scoped_vector.h" +#include "base/scoped_vector.h" +#include "chrome/browser/history/query_parser.h" #include "testing/gtest/include/gtest/gtest.h" class QueryParserTest : public testing::Test { diff --git a/chrome/browser/history/starred_url_database.cc b/chrome/browser/history/starred_url_database.cc index a2b1321c..b56bcd9 100644 --- a/chrome/browser/history/starred_url_database.cc +++ b/chrome/browser/history/starred_url_database.cc @@ -7,6 +7,8 @@ #include "base/file_util.h" #include "base/logging.h" #include "base/json_writer.h" +#include "base/scoped_vector.h" +#include "base/stl_util-inl.h" #include "base/string_util.h" #include "base/values.h" #include "chrome/browser/bookmarks/bookmark_codec.h" @@ -14,10 +16,8 @@ #include "chrome/browser/history/history.h" #include "chrome/browser/history/query_parser.h" #include "chrome/browser/meta_table_helper.h" -#include "chrome/common/scoped_vector.h" #include "chrome/common/sqlite_compiled_statement.h" #include "chrome/common/sqlite_utils.h" -#include "chrome/common/stl_util-inl.h" using base::Time; |