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

Unified Diff: third_party/WebKit/Source/web/ColorChooserPopupUIController.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/ColorChooserPopupUIController.h
diff --git a/third_party/WebKit/Source/web/ColorChooserPopupUIController.h b/third_party/WebKit/Source/web/ColorChooserPopupUIController.h
index 3099560172e5d737fcd4606a363c9c1a082ec0c2..ae7a7adaddb1517ad0e071435d28e0405335e6e0 100644
--- a/third_party/WebKit/Source/web/ColorChooserPopupUIController.h
+++ b/third_party/WebKit/Source/web/ColorChooserPopupUIController.h
@@ -37,11 +37,11 @@ class ColorChooserClient;
class PagePopup;
class ColorChooserPopupUIController final : public ColorChooserUIController, public PagePopupClient {
- WILL_BE_USING_PRE_FINALIZER(ColorChooserPopupUIController, dispose);
+ USING_PRE_FINALIZER(ColorChooserPopupUIController, dispose);
public:
- static PassOwnPtrWillBeRawPtr<ColorChooserPopupUIController> create(LocalFrame* frame, ChromeClientImpl* chromeClient, ColorChooserClient* client)
+ static RawPtr<ColorChooserPopupUIController> create(LocalFrame* frame, ChromeClientImpl* chromeClient, ColorChooserClient* client)
{
- return adoptPtrWillBeNoop(new ColorChooserPopupUIController(frame, chromeClient, client));
+ return new ColorChooserPopupUIController(frame, chromeClient, client);
}
~ColorChooserPopupUIController() override;
@@ -70,7 +70,7 @@ private:
void openPopup();
void dispose();
- RawPtrWillBeMember<ChromeClientImpl> m_chromeClient;
+ Member<ChromeClientImpl> m_chromeClient;
PagePopup* m_popup;
Locale& m_locale;
};
« no previous file with comments | « third_party/WebKit/Source/web/ChromeClientImpl.cpp ('k') | third_party/WebKit/Source/web/ColorChooserUIController.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698