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

Side by Side Diff: Source/modules/speech/SpeechSynthesisUtterance.h

Issue 403013002: Rename WebCore to blink in Modules (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2013 Apple Inc. All rights reserved. 2 * Copyright (C) 2013 Apple Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 14 matching lines...) Expand all
25 25
26 #ifndef SpeechSynthesisUtterance_h 26 #ifndef SpeechSynthesisUtterance_h
27 #define SpeechSynthesisUtterance_h 27 #define SpeechSynthesisUtterance_h
28 28
29 #include "core/dom/ContextLifecycleObserver.h" 29 #include "core/dom/ContextLifecycleObserver.h"
30 #include "modules/EventTargetModules.h" 30 #include "modules/EventTargetModules.h"
31 #include "modules/speech/SpeechSynthesisVoice.h" 31 #include "modules/speech/SpeechSynthesisVoice.h"
32 #include "platform/heap/Handle.h" 32 #include "platform/heap/Handle.h"
33 #include "platform/speech/PlatformSpeechSynthesisUtterance.h" 33 #include "platform/speech/PlatformSpeechSynthesisUtterance.h"
34 34
35 namespace WebCore { 35 namespace blink {
36 36
37 class SpeechSynthesisUtterance FINAL : public RefCountedGarbageCollectedWillBeGa rbageCollectedFinalized<SpeechSynthesisUtterance>, public PlatformSpeechSynthesi sUtteranceClient, public ContextLifecycleObserver, public EventTargetWithInlineD ata { 37 class SpeechSynthesisUtterance FINAL : public RefCountedGarbageCollectedWillBeGa rbageCollectedFinalized<SpeechSynthesisUtterance>, public PlatformSpeechSynthesi sUtteranceClient, public ContextLifecycleObserver, public EventTargetWithInlineD ata {
38 DEFINE_EVENT_TARGET_REFCOUNTING_WILL_BE_REMOVED(RefCountedGarbageCollected<S peechSynthesisUtterance>); 38 DEFINE_EVENT_TARGET_REFCOUNTING_WILL_BE_REMOVED(RefCountedGarbageCollected<S peechSynthesisUtterance>);
39 USING_GARBAGE_COLLECTED_MIXIN(SpeechSynthesisUtterance); 39 USING_GARBAGE_COLLECTED_MIXIN(SpeechSynthesisUtterance);
40 public: 40 public:
41 static SpeechSynthesisUtterance* create(ExecutionContext*, const String&); 41 static SpeechSynthesisUtterance* create(ExecutionContext*, const String&);
42 42
43 virtual ~SpeechSynthesisUtterance(); 43 virtual ~SpeechSynthesisUtterance();
44 44
45 const String& text() const { return m_platformUtterance->text(); } 45 const String& text() const { return m_platformUtterance->text(); }
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 private: 80 private:
81 SpeechSynthesisUtterance(ExecutionContext*, const String&); 81 SpeechSynthesisUtterance(ExecutionContext*, const String&);
82 82
83 // EventTarget 83 // EventTarget
84 virtual const AtomicString& interfaceName() const OVERRIDE; 84 virtual const AtomicString& interfaceName() const OVERRIDE;
85 85
86 Member<PlatformSpeechSynthesisUtterance> m_platformUtterance; 86 Member<PlatformSpeechSynthesisUtterance> m_platformUtterance;
87 Member<SpeechSynthesisVoice> m_voice; 87 Member<SpeechSynthesisVoice> m_voice;
88 }; 88 };
89 89
90 } // namespace WebCore 90 } // namespace blink
91 91
92 #endif // SpeechSynthesisUtterance_h 92 #endif // SpeechSynthesisUtterance_h
OLDNEW
« no previous file with comments | « Source/modules/speech/SpeechSynthesisEvent.cpp ('k') | Source/modules/speech/SpeechSynthesisUtterance.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698