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

Unified Diff: Source/modules/speech/SpeechSynthesisUtterance.h

Issue 334263022: Include wtf/RefCounted.h less often in modules/ (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 6 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: Source/modules/speech/SpeechSynthesisUtterance.h
diff --git a/Source/modules/speech/SpeechSynthesisUtterance.h b/Source/modules/speech/SpeechSynthesisUtterance.h
index c1eb9817ae092b9fe6c0c145c866b4ed48edf6d7..7411e160636d8f265c269c369009c58abca65046 100644
--- a/Source/modules/speech/SpeechSynthesisUtterance.h
+++ b/Source/modules/speech/SpeechSynthesisUtterance.h
@@ -32,7 +32,6 @@
#include "modules/speech/SpeechSynthesisVoice.h"
#include "platform/heap/Handle.h"
#include "platform/speech/PlatformSpeechSynthesisUtterance.h"
-#include "wtf/PassRefPtr.h"
namespace WebCore {
@@ -81,11 +80,12 @@ public:
private:
SpeechSynthesisUtterance(ExecutionContext*, const String&);
- Member<PlatformSpeechSynthesisUtterance> m_platformUtterance;
- Member<SpeechSynthesisVoice> m_voice;
// EventTarget
virtual const AtomicString& interfaceName() const OVERRIDE;
+
+ Member<PlatformSpeechSynthesisUtterance> m_platformUtterance;
+ Member<SpeechSynthesisVoice> m_voice;
};
} // namespace WebCore
« no previous file with comments | « Source/modules/speech/SpeechRecognitionAlternative.h ('k') | Source/modules/webaudio/AudioBasicProcessorNode.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698