Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(522)

Side by Side Diff: chrome/browser/browsing_data_database_helper.cc

Issue 650110: Teach the cookie tree view / model about appcaches. Not hooked up to real dat... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/browsing_data_database_helper.h" 5 #include "chrome/browser/browsing_data_database_helper.h"
6 6
7 #include "base/callback.h" 7 #include "base/callback.h"
8 #include "base/file_util.h" 8 #include "base/file_util.h"
9 #include "base/message_loop.h" 9 #include "base/message_loop.h"
10 #include "chrome/browser/chrome_thread.h" 10 #include "chrome/browser/chrome_thread.h"
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 79
80 ChromeThread::PostTask(ChromeThread::UI, FROM_HERE, NewRunnableMethod( 80 ChromeThread::PostTask(ChromeThread::UI, FROM_HERE, NewRunnableMethod(
81 this, &BrowsingDataDatabaseHelper::NotifyInUIThread)); 81 this, &BrowsingDataDatabaseHelper::NotifyInUIThread));
82 } 82 }
83 83
84 void BrowsingDataDatabaseHelper::NotifyInUIThread() { 84 void BrowsingDataDatabaseHelper::NotifyInUIThread() {
85 DCHECK(ChromeThread::CurrentlyOn(ChromeThread::UI)); 85 DCHECK(ChromeThread::CurrentlyOn(ChromeThread::UI));
86 DCHECK(is_fetching_); 86 DCHECK(is_fetching_);
87 // Note: completion_callback_ mutates only in the UI thread, so it's safe to 87 // Note: completion_callback_ mutates only in the UI thread, so it's safe to
88 // test it here. 88 // test it here.
89 if (completion_callback_ != NULL) 89 if (completion_callback_ != NULL) {
90 completion_callback_->Run(database_info_); 90 completion_callback_->Run(database_info_);
91 completion_callback_.reset();
92 }
91 is_fetching_ = false; 93 is_fetching_ = false;
92 database_info_.clear(); 94 database_info_.clear();
93 } 95 }
94 96
95 void BrowsingDataDatabaseHelper::DeleteDatabaseInFileThread( 97 void BrowsingDataDatabaseHelper::DeleteDatabaseInFileThread(
96 const std::string& origin, 98 const std::string& origin,
97 const std::string& name) { 99 const std::string& name) {
98 DCHECK(ChromeThread::CurrentlyOn(ChromeThread::FILE)); 100 DCHECK(ChromeThread::CurrentlyOn(ChromeThread::FILE));
99 if (!tracker_.get()) 101 if (!tracker_.get())
100 return; 102 return;
101 tracker_->DeleteDatabase(UTF8ToUTF16(origin), UTF8ToUTF16(name), NULL); 103 tracker_->DeleteDatabase(UTF8ToUTF16(origin), UTF8ToUTF16(name), NULL);
102 } 104 }
OLDNEW
« no previous file with comments | « chrome/browser/browsing_data_appcache_helper.cc ('k') | chrome/browser/browsing_data_local_storage_helper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698