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

Unified Diff: third_party/WebKit/Source/web/InspectorRenderingAgent.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/web/InspectorRenderingAgent.h
diff --git a/third_party/WebKit/Source/web/InspectorRenderingAgent.h b/third_party/WebKit/Source/web/InspectorRenderingAgent.h
index 2c447e39328cd0f7a70b304daeb62a85f6fdb35c..954adf3dcdf031a8de13735bf286b2ebd8fc784b 100644
--- a/third_party/WebKit/Source/web/InspectorRenderingAgent.h
+++ b/third_party/WebKit/Source/web/InspectorRenderingAgent.h
@@ -18,7 +18,7 @@ using ErrorString = String;
class InspectorRenderingAgent final : public InspectorBaseAgent<InspectorRenderingAgent, InspectorFrontend::Rendering>, public InspectorBackendDispatcher::RenderingCommandHandler {
WTF_MAKE_NONCOPYABLE(InspectorRenderingAgent);
public:
- static PassOwnPtrWillBeRawPtr<InspectorRenderingAgent> create(WebLocalFrameImpl*);
+ static RawPtr<InspectorRenderingAgent> create(WebLocalFrameImpl*);
// InspectorBackendDispatcher::PageCommandHandler implementation.
void setShowPaintRects(ErrorString*, bool show) override;
@@ -37,7 +37,7 @@ private:
bool compositingEnabled(ErrorString*);
WebViewImpl* webViewImpl();
- RawPtrWillBeMember<WebLocalFrameImpl> m_webLocalFrameImpl;
+ Member<WebLocalFrameImpl> m_webLocalFrameImpl;
};

Powered by Google App Engine
This is Rietveld 408576698