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

Unified Diff: third_party/WebKit/Source/modules/storage/InspectorDOMStorageAgent.h

Issue 1686483002: Oilpan: Remove most WillBe types from the code base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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: third_party/WebKit/Source/modules/storage/InspectorDOMStorageAgent.h
diff --git a/third_party/WebKit/Source/modules/storage/InspectorDOMStorageAgent.h b/third_party/WebKit/Source/modules/storage/InspectorDOMStorageAgent.h
index b22321b4622738b341a7b9ce456e388008aacdcb..a3b0c3774492129ba529bfcf23d11624197b3e64 100644
--- a/third_party/WebKit/Source/modules/storage/InspectorDOMStorageAgent.h
+++ b/third_party/WebKit/Source/modules/storage/InspectorDOMStorageAgent.h
@@ -48,9 +48,9 @@ typedef String ErrorString;
class MODULES_EXPORT InspectorDOMStorageAgent final : public InspectorBaseAgent<InspectorDOMStorageAgent, InspectorFrontend::DOMStorage>, public InspectorBackendDispatcher::DOMStorageCommandHandler {
public:
- static PassOwnPtrWillBeRawPtr<InspectorDOMStorageAgent> create(Page* page)
+ static RawPtr<InspectorDOMStorageAgent> create(Page* page)
{
- return adoptPtrWillBeNoop(new InspectorDOMStorageAgent(page));
+ return (new InspectorDOMStorageAgent(page));
}
~InspectorDOMStorageAgent() override;
@@ -74,7 +74,7 @@ private:
StorageArea* findStorageArea(ErrorString*, const RefPtr<JSONObject>&, LocalFrame*&);
PassRefPtr<TypeBuilder::DOMStorage::StorageId> storageId(SecurityOrigin*, bool isLocalStorage);
- RawPtrWillBeMember<Page> m_page;
+ Member<Page> m_page;
bool m_isEnabled;
};

Powered by Google App Engine
This is Rietveld 408576698