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

Unified Diff: third_party/WebKit/Source/modules/speech/SpeechRecognition.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/speech/SpeechRecognition.h
diff --git a/third_party/WebKit/Source/modules/speech/SpeechRecognition.h b/third_party/WebKit/Source/modules/speech/SpeechRecognition.h
index 17d8323e7a6fe111d176e6c4bcd1f0c5c1ae7c77..76616b47d03e281967daf1f6fc4edb77e206f903 100644
--- a/third_party/WebKit/Source/modules/speech/SpeechRecognition.h
+++ b/third_party/WebKit/Source/modules/speech/SpeechRecognition.h
@@ -48,7 +48,7 @@ class SpeechRecognitionError;
class MODULES_EXPORT SpeechRecognition final : public RefCountedGarbageCollectedEventTargetWithInlineData<SpeechRecognition>, public PageLifecycleObserver, public ActiveScriptWrappable, public ActiveDOMObject {
REFCOUNTED_GARBAGE_COLLECTED_EVENT_TARGET(SpeechRecognition);
- WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(SpeechRecognition);
+ USING_GARBAGE_COLLECTED_MIXIN(SpeechRecognition);
DEFINE_WRAPPERTYPEINFO();
public:
static SpeechRecognition* create(ExecutionContext*);
@@ -83,7 +83,7 @@ public:
void didEndAudio();
void didReceiveResults(const HeapVector<Member<SpeechRecognitionResult>>& newFinalResults, const HeapVector<Member<SpeechRecognitionResult>>& currentInterimResults);
void didReceiveNoMatch(SpeechRecognitionResult*);
- void didReceiveError(PassRefPtrWillBeRawPtr<SpeechRecognitionError>);
+ void didReceiveError(RawPtr<SpeechRecognitionError>);
void didStart();
void didEnd();
@@ -124,7 +124,7 @@ private:
bool m_interimResults;
unsigned long m_maxAlternatives;
- RawPtrWillBeMember<SpeechRecognitionController> m_controller;
+ Member<SpeechRecognitionController> m_controller;
bool m_stoppedByActiveDOMObject;
bool m_started;
bool m_stopping;

Powered by Google App Engine
This is Rietveld 408576698