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

Unified Diff: Source/web/StorageQuotaClientImpl.cpp

Issue 255983003: Oilpan: Move all supplements of Page, Document, and WorkerClients to the managed heap. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: review comments Created 6 years, 8 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/web/StorageQuotaClientImpl.cpp
diff --git a/Source/web/StorageQuotaClientImpl.cpp b/Source/web/StorageQuotaClientImpl.cpp
index 592213a376b4b68415cb5cec9b9e373b6caf3285..830a9dae83ca6651b83b2de6489a99189c7e5f8e 100644
--- a/Source/web/StorageQuotaClientImpl.cpp
+++ b/Source/web/StorageQuotaClientImpl.cpp
@@ -52,9 +52,9 @@ using namespace WebCore;
namespace blink {
-PassOwnPtr<StorageQuotaClientImpl> StorageQuotaClientImpl::create()
+PassOwnPtrWillBeRawPtr<StorageQuotaClientImpl> StorageQuotaClientImpl::create()
{
- return adoptPtr(new StorageQuotaClientImpl());
+ return adoptPtrWillBeNoop(new StorageQuotaClientImpl());
}
StorageQuotaClientImpl::~StorageQuotaClientImpl()

Powered by Google App Engine
This is Rietveld 408576698