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

Unified Diff: Source/modules/quota/StorageQuotaClient.h

Issue 563703002: Oilpan: Enable oilpan for callback classes (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 3 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 side-by-side diff with in-line comments
Download patch
Index: Source/modules/quota/StorageQuotaClient.h
diff --git a/Source/modules/quota/StorageQuotaClient.h b/Source/modules/quota/StorageQuotaClient.h
index 20551d6accab61f22bd9b32b0282a512c42720cb..b0c1798fd850decae254a99beb7bdb327e48e08e 100644
--- a/Source/modules/quota/StorageQuotaClient.h
+++ b/Source/modules/quota/StorageQuotaClient.h
@@ -51,7 +51,7 @@ public:
StorageQuotaClient() { }
virtual ~StorageQuotaClient() { }
- virtual void requestQuota(ExecutionContext*, WebStorageQuotaType, unsigned long long newQuotaInBytes, PassOwnPtrWillBeRawPtr<StorageQuotaCallback>, PassOwnPtrWillBeRawPtr<StorageErrorCallback>) = 0;
+ virtual void requestQuota(ExecutionContext*, WebStorageQuotaType, unsigned long long newQuotaInBytes, StorageQuotaCallback*, StorageErrorCallback*) = 0;
virtual ScriptPromise requestPersistentQuota(ScriptState*, unsigned long long newQuotaInBytes) = 0;
static const char* supplementName();

Powered by Google App Engine
This is Rietveld 408576698