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

Unified Diff: third_party/WebKit/Source/modules/audio_output_devices/AudioOutputDeviceClient.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/audio_output_devices/AudioOutputDeviceClient.h
diff --git a/third_party/WebKit/Source/modules/audio_output_devices/AudioOutputDeviceClient.h b/third_party/WebKit/Source/modules/audio_output_devices/AudioOutputDeviceClient.h
index 1aee70d14bb7f0f93432ad5189b412d5b35918e3..c7a5db36dbc7e6d9d1b6877b08f4cdfb1e9fef2c 100644
--- a/third_party/WebKit/Source/modules/audio_output_devices/AudioOutputDeviceClient.h
+++ b/third_party/WebKit/Source/modules/audio_output_devices/AudioOutputDeviceClient.h
@@ -17,19 +17,19 @@ class LocalFrame;
class WebString;
class ScriptState;
-class AudioOutputDeviceClient : public WillBeHeapSupplement<LocalFrame> {
+class AudioOutputDeviceClient : public HeapSupplement<LocalFrame> {
public:
virtual ~AudioOutputDeviceClient() {}
// Checks that a given sink exists and has permissions to be used from the origin of the current frame.
virtual void checkIfAudioSinkExistsAndIsAuthorized(ExecutionContext*, const WebString& sinkId, PassOwnPtr<WebSetSinkIdCallbacks>) = 0;
- // WillBeHeapSupplement requirements.
+ // HeapSupplement requirements.
static AudioOutputDeviceClient* from(ExecutionContext*);
static const char* supplementName();
};
-MODULES_EXPORT void provideAudioOutputDeviceClientTo(LocalFrame&, PassOwnPtrWillBeRawPtr<AudioOutputDeviceClient>);
+MODULES_EXPORT void provideAudioOutputDeviceClientTo(LocalFrame&, RawPtr<AudioOutputDeviceClient>);
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698