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

Side by Side Diff: chrome/browser/browsing_data_local_storage_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, 9 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_local_storage_helper.h" 5 #include "chrome/browser/browsing_data_local_storage_helper.h"
6 6
7 #include "base/file_util.h" 7 #include "base/file_util.h"
8 #include "base/message_loop.h" 8 #include "base/message_loop.h"
9 #include "chrome/browser/chrome_thread.h" 9 #include "chrome/browser/chrome_thread.h"
10 #include "chrome/browser/in_process_webkit/webkit_context.h" 10 #include "chrome/browser/in_process_webkit/webkit_context.h"
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 ChromeThread::UI, FROM_HERE, 89 ChromeThread::UI, FROM_HERE,
90 NewRunnableMethod( 90 NewRunnableMethod(
91 this, &BrowsingDataLocalStorageHelper::NotifyInUIThread)); 91 this, &BrowsingDataLocalStorageHelper::NotifyInUIThread));
92 } 92 }
93 93
94 void BrowsingDataLocalStorageHelper::NotifyInUIThread() { 94 void BrowsingDataLocalStorageHelper::NotifyInUIThread() {
95 DCHECK(ChromeThread::CurrentlyOn(ChromeThread::UI)); 95 DCHECK(ChromeThread::CurrentlyOn(ChromeThread::UI));
96 DCHECK(is_fetching_); 96 DCHECK(is_fetching_);
97 // Note: completion_callback_ mutates only in the UI thread, so it's safe to 97 // Note: completion_callback_ mutates only in the UI thread, so it's safe to
98 // test it here. 98 // test it here.
99 if (completion_callback_ != NULL) 99 if (completion_callback_ != NULL) {
100 completion_callback_->Run(local_storage_info_); 100 completion_callback_->Run(local_storage_info_);
101 completion_callback_.reset();
102 }
101 is_fetching_ = false; 103 is_fetching_ = false;
102 } 104 }
103 105
104 void BrowsingDataLocalStorageHelper::DeleteLocalStorageFileInWebKitThread( 106 void BrowsingDataLocalStorageHelper::DeleteLocalStorageFileInWebKitThread(
105 const FilePath& file_path) { 107 const FilePath& file_path) {
106 DCHECK(ChromeThread::CurrentlyOn(ChromeThread::WEBKIT)); 108 DCHECK(ChromeThread::CurrentlyOn(ChromeThread::WEBKIT));
107 profile_->GetWebKitContext()->dom_storage_context()->DeleteLocalStorageFile( 109 profile_->GetWebKitContext()->dom_storage_context()->DeleteLocalStorageFile(
108 file_path); 110 file_path);
109 } 111 }
OLDNEW
« no previous file with comments | « chrome/browser/browsing_data_database_helper.cc ('k') | chrome/browser/browsing_data_remover.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698