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

Unified Diff: Source/modules/quota/DeprecatedStorageQuotaCallbacksImpl.cpp

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/DeprecatedStorageQuotaCallbacksImpl.cpp
diff --git a/Source/modules/quota/DeprecatedStorageQuotaCallbacksImpl.cpp b/Source/modules/quota/DeprecatedStorageQuotaCallbacksImpl.cpp
index 4d7dd1bb801014a348f3847d4d69509430b45df9..a3992ffb684feeb8ea7d433572b05b4a15eba05e 100644
--- a/Source/modules/quota/DeprecatedStorageQuotaCallbacksImpl.cpp
+++ b/Source/modules/quota/DeprecatedStorageQuotaCallbacksImpl.cpp
@@ -36,13 +36,13 @@
namespace blink {
-DeprecatedStorageQuotaCallbacksImpl::DeprecatedStorageQuotaCallbacksImpl(PassOwnPtrWillBeRawPtr<StorageUsageCallback> usageCallback, PassOwnPtrWillBeRawPtr<StorageErrorCallback> errorCallback)
+DeprecatedStorageQuotaCallbacksImpl::DeprecatedStorageQuotaCallbacksImpl(StorageUsageCallback* usageCallback, StorageErrorCallback* errorCallback)
: m_usageCallback(usageCallback)
, m_errorCallback(errorCallback)
{
}
-DeprecatedStorageQuotaCallbacksImpl::DeprecatedStorageQuotaCallbacksImpl(PassOwnPtrWillBeRawPtr<StorageQuotaCallback> quotaCallback, PassOwnPtrWillBeRawPtr<StorageErrorCallback> errorCallback)
+DeprecatedStorageQuotaCallbacksImpl::DeprecatedStorageQuotaCallbacksImpl(StorageQuotaCallback* quotaCallback, StorageErrorCallback* errorCallback)
: m_quotaCallback(quotaCallback)
, m_errorCallback(errorCallback)
{
« no previous file with comments | « Source/modules/quota/DeprecatedStorageQuotaCallbacksImpl.h ('k') | Source/modules/quota/StorageErrorCallback.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698