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

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, 10 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 6321aa6a44995cb600cd58112b8257941c541b9c..2c1690855abe3ca65a326565278279ad11f44991 100644
--- a/third_party/WebKit/Source/modules/speech/SpeechRecognition.h
+++ b/third_party/WebKit/Source/modules/speech/SpeechRecognition.h
@@ -47,7 +47,7 @@ class SpeechRecognitionError;
class MODULES_EXPORT SpeechRecognition final : public RefCountedGarbageCollectedEventTargetWithInlineData<SpeechRecognition>, public PageLifecycleObserver, 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*);
@@ -82,7 +82,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();
@@ -121,7 +121,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