summaryrefslogtreecommitdiffstats
path: root/chrome/browser/browsing_data_remover.h
diff options
context:
space:
mode:
authormichaeln@google.com <michaeln@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2012-03-14 20:28:46 +0000
committermichaeln@google.com <michaeln@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2012-03-14 20:28:46 +0000
commitc70c94f9fd39ed98f94abf8962903874bff093f0 (patch)
treeeba6a72057abebe0a0fc629a8b712350642dbf91 /chrome/browser/browsing_data_remover.h
parenteedff4e0601522d489db61bfff5d8a5e0d6a671c (diff)
downloadchromium_src-c70c94f9fd39ed98f94abf8962903874bff093f0.zip
chromium_src-c70c94f9fd39ed98f94abf8962903874bff093f0.tar.gz
chromium_src-c70c94f9fd39ed98f94abf8962903874bff093f0.tar.bz2
ContentAPI change - Post DomStorage tasks via a SequencedTaskRunner instead of directly to WEBKIT_DEPRECATED.
BUG=106763 Review URL: https://chromiumcodereview.appspot.com/9700007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@126720 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/browsing_data_remover.h')
-rw-r--r--chrome/browser/browsing_data_remover.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/browser/browsing_data_remover.h b/chrome/browser/browsing_data_remover.h
index b54ef03..a2459d1c 100644
--- a/chrome/browser/browsing_data_remover.h
+++ b/chrome/browser/browsing_data_remover.h
@@ -246,9 +246,9 @@ class BrowsingDataRemover : public content::NotificationObserver,
// Calculate the begin time for the deletion range specified by |time_period|.
base::Time CalculateBeginDeleteTime(TimePeriod time_period);
- // Invoked on the WEBKIT thread to clear local storage.
- void ClearDOMStorageOnWebKitThread(
- scoped_refptr<content::DOMStorageContext> dom_storage_context);
+ // Invoked in a background task to clear local storage.
+ void ClearDOMStorageInSequencedTask(
+ content::DOMStorageContext* dom_storage_context);
// Returns true if we're all done.
bool all_done() {