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

Unified Diff: third_party/WebKit/Source/modules/mediastream/MediaDevicesRequest.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/modules/mediastream/MediaDevicesRequest.h
diff --git a/third_party/WebKit/Source/modules/mediastream/MediaDevicesRequest.h b/third_party/WebKit/Source/modules/mediastream/MediaDevicesRequest.h
index 8f4354ad7da4b5531c81698526b3f146cd366f71..39c35ca28d9d577d0fe72d68745982a28ed37004 100644
--- a/third_party/WebKit/Source/modules/mediastream/MediaDevicesRequest.h
+++ b/third_party/WebKit/Source/modules/mediastream/MediaDevicesRequest.h
@@ -42,7 +42,7 @@ class ScriptState;
class ScriptPromiseResolver;
class MODULES_EXPORT MediaDevicesRequest final : public GarbageCollectedFinalized<MediaDevicesRequest>, public ActiveDOMObject {
- WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(MediaDevicesRequest);
+ USING_GARBAGE_COLLECTED_MIXIN(MediaDevicesRequest);
public:
static MediaDevicesRequest* create(ScriptState*, UserMediaController*);
~MediaDevicesRequest() override;
@@ -61,7 +61,7 @@ public:
private:
MediaDevicesRequest(ScriptState*, UserMediaController*);
- RawPtrWillBeMember<UserMediaController> m_controller;
+ Member<UserMediaController> m_controller;
Member<ScriptPromiseResolver> m_resolver;
};

Powered by Google App Engine
This is Rietveld 408576698