diff options
author | meelapshah@chromium.org <meelapshah@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-07-09 17:30:49 +0000 |
---|---|---|
committer | meelapshah@chromium.org <meelapshah@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-07-09 17:30:49 +0000 |
commit | 72d0fc7358e46f8646ebb14e3ea882618c260039 (patch) | |
tree | fdce419abfd8903d8d002bb74185f7ac36dbd262 /chrome/browser/profile.cc | |
parent | 47c2188f2fc336b6040d6047afca32eb8e9779d8 (diff) | |
download | chromium_src-72d0fc7358e46f8646ebb14e3ea882618c260039.zip chromium_src-72d0fc7358e46f8646ebb14e3ea882618c260039.tar.gz chromium_src-72d0fc7358e46f8646ebb14e3ea882618c260039.tar.bz2 |
Change ThumbnailStore to use sqlite instead of individual files try 2. Previous try failed interactive_ui_tests.
Review URL: http://codereview.chromium.org/149361
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@20272 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/profile.cc')
-rw-r--r-- | chrome/browser/profile.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/profile.cc b/chrome/browser/profile.cc index 6e0a5a4..085f814 100644 --- a/chrome/browser/profile.cc +++ b/chrome/browser/profile.cc @@ -1016,7 +1016,7 @@ TabRestoreService* ProfileImpl::GetTabRestoreService() { ThumbnailStore* ProfileImpl::GetThumbnailStore() { if (!thumbnail_store_.get()) { thumbnail_store_ = new ThumbnailStore; - thumbnail_store_->Init(GetPath().AppendASCII("thumbnailstore"), this); + thumbnail_store_->Init(GetPath().AppendASCII("Top Thumbnails"), this); } return thumbnail_store_.get(); } |