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

Unified Diff: third_party/WebKit/Source/modules/filesystem/InspectorFileSystemAgent.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/filesystem/InspectorFileSystemAgent.h
diff --git a/third_party/WebKit/Source/modules/filesystem/InspectorFileSystemAgent.h b/third_party/WebKit/Source/modules/filesystem/InspectorFileSystemAgent.h
index 15eddb992d9aab24f468d55730962f3d54026f6c..e41f7e704e53f2cf92a0cdbce8af1f7f62c05681 100644
--- a/third_party/WebKit/Source/modules/filesystem/InspectorFileSystemAgent.h
+++ b/third_party/WebKit/Source/modules/filesystem/InspectorFileSystemAgent.h
@@ -45,7 +45,7 @@ class SecurityOrigin;
class MODULES_EXPORT InspectorFileSystemAgent final : public InspectorBaseAgent<InspectorFileSystemAgent, InspectorFrontend::FileSystem>, public InspectorBackendDispatcher::FileSystemCommandHandler {
public:
- static PassOwnPtrWillBeRawPtr<InspectorFileSystemAgent> create(InspectedFrames*);
+ static RawPtr<InspectorFileSystemAgent> create(InspectedFrames*);
~InspectorFileSystemAgent() override;
DECLARE_VIRTUAL_TRACE();
@@ -65,7 +65,7 @@ private:
bool assertEnabled(ErrorString*);
ExecutionContext* assertExecutionContextForOrigin(ErrorString*, SecurityOrigin*);
- RawPtrWillBeMember<InspectedFrames> m_inspectedFrames;
+ Member<InspectedFrames> m_inspectedFrames;
bool m_enabled;
};

Powered by Google App Engine
This is Rietveld 408576698