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

Unified Diff: third_party/WebKit/Source/web/ValidationMessageClientImpl.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, 9 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/ValidationMessageClientImpl.h
diff --git a/third_party/WebKit/Source/web/ValidationMessageClientImpl.h b/third_party/WebKit/Source/web/ValidationMessageClientImpl.h
index 7d829cd24b7d28c07dc59accea94fcb535b4b0b4..52cd159df7b729c8c3b93dd0928010c53cd7d667 100644
--- a/third_party/WebKit/Source/web/ValidationMessageClientImpl.h
+++ b/third_party/WebKit/Source/web/ValidationMessageClientImpl.h
@@ -37,10 +37,10 @@ namespace blink {
class FrameView;
class WebViewImpl;
-class ValidationMessageClientImpl final : public NoBaseWillBeGarbageCollectedFinalized<ValidationMessageClientImpl>, public ValidationMessageClient {
- WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(ValidationMessageClientImpl);
+class ValidationMessageClientImpl final : public GarbageCollectedFinalized<ValidationMessageClientImpl>, public ValidationMessageClient {
+ USING_GARBAGE_COLLECTED_MIXIN(ValidationMessageClientImpl);
public:
- static PassOwnPtrWillBeRawPtr<ValidationMessageClientImpl> create(WebViewImpl&);
+ static RawPtr<ValidationMessageClientImpl> create(WebViewImpl&);
~ValidationMessageClientImpl() override;
DECLARE_VIRTUAL_TRACE();
@@ -57,7 +57,7 @@ private:
void willBeDestroyed() override;
WebViewImpl& m_webView;
- RawPtrWillBeMember<const Element> m_currentAnchor;
+ Member<const Element> m_currentAnchor;
String m_message;
IntRect m_lastAnchorRectInScreen;
float m_lastPageScaleFactor;
« no previous file with comments | « third_party/WebKit/Source/web/TextFinder.cpp ('k') | third_party/WebKit/Source/web/ValidationMessageClientImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698