summaryrefslogtreecommitdiffstats
path: root/chrome/browser/profile.cc
diff options
context:
space:
mode:
authormeelapshah@chromium.org <meelapshah@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-07-09 17:30:49 +0000
committermeelapshah@chromium.org <meelapshah@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-07-09 17:30:49 +0000
commit72d0fc7358e46f8646ebb14e3ea882618c260039 (patch)
treefdce419abfd8903d8d002bb74185f7ac36dbd262 /chrome/browser/profile.cc
parent47c2188f2fc336b6040d6047afca32eb8e9779d8 (diff)
downloadchromium_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.cc2
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();
}