diff options
author | meelapshah@chromium.org <meelapshah@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-07-01 21:50:33 +0000 |
---|---|---|
committer | meelapshah@chromium.org <meelapshah@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-07-01 21:50:33 +0000 |
commit | 379c2b1a13d25f8457e0d602cab20e42961825bd (patch) | |
tree | 268a4574a8f2a7cc6da3cea7dc11a7fc1877d735 /chrome/tools | |
parent | a0ac629c9409d6b268f51fea12a4b284870e7095 (diff) | |
download | chromium_src-379c2b1a13d25f8457e0d602cab20e42961825bd.zip chromium_src-379c2b1a13d25f8457e0d602cab20e42961825bd.tar.gz chromium_src-379c2b1a13d25f8457e0d602cab20e42961825bd.tar.bz2 |
Moved typedef of RedirectList from HistoryService class to history namespace.
Review URL: http://codereview.chromium.org/151168
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@19766 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/tools')
-rw-r--r-- | chrome/tools/profiles/generate_profile.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/tools/profiles/generate_profile.cc b/chrome/tools/profiles/generate_profile.cc index 397ae0c..6115412 100644 --- a/chrome/tools/profiles/generate_profile.cc +++ b/chrome/tools/profiles/generate_profile.cc @@ -140,7 +140,7 @@ void InsertURLBatch(const std::wstring& profile_dir, int page_id, } // Randomly construct a redirect chain. - HistoryService::RedirectList redirects; + history::RedirectList redirects; if (RandomFloat() < kRedirectProbability) { const int redir_count = RandomInt(1, 4); for (int i = 0; i < redir_count; ++i) |