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

Unified Diff: third_party/WebKit/Source/modules/speech/SpeechRecognition.h

Issue 1455943002: [Oilpan] Prepare full definition of classes before using Member (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: CORE_EXPORT Created 5 years, 1 month 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 741f2b7f730e86d36947ece6b0c31fe350b66645..83025450806d7483c2a0a82fcda1296cdb73afe3 100644
--- a/third_party/WebKit/Source/modules/speech/SpeechRecognition.h
+++ b/third_party/WebKit/Source/modules/speech/SpeechRecognition.h
@@ -67,8 +67,8 @@ public:
void setInterimResults(bool interimResults) { m_interimResults = interimResults; }
unsigned maxAlternatives() { return m_maxAlternatives; }
void setMaxAlternatives(unsigned maxAlternatives) { m_maxAlternatives = maxAlternatives; }
- MediaStreamTrack* audioTrack() { return m_audioTrack; }
- void setAudioTrack(MediaStreamTrack* audioTrack) { m_audioTrack = audioTrack; }
+ MediaStreamTrack* audioTrack() const;
+ void setAudioTrack(MediaStreamTrack*);
// Callable by the user.
void start(ExceptionState&);

Powered by Google App Engine
This is Rietveld 408576698