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

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

Issue 334283004: Rename DOMWindow to LocalDOMWindow (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase 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/DOMWindowSpeechSynthesis.h
diff --git a/Source/modules/speech/DOMWindowSpeechSynthesis.h b/Source/modules/speech/DOMWindowSpeechSynthesis.h
index 83310c7ff362fa502001e5e1e3e36994608102ef..865bdb1e7cccd13cf9ca8dd2c8e83a3b49e50f2f 100644
--- a/Source/modules/speech/DOMWindowSpeechSynthesis.h
+++ b/Source/modules/speech/DOMWindowSpeechSynthesis.h
@@ -33,20 +33,20 @@
namespace WebCore {
-class DOMWindow;
+class LocalDOMWindow;
-class DOMWindowSpeechSynthesis FINAL : public NoBaseWillBeGarbageCollectedFinalized<DOMWindowSpeechSynthesis>, public WillBeHeapSupplement<DOMWindow>, public DOMWindowProperty {
+class DOMWindowSpeechSynthesis FINAL : public NoBaseWillBeGarbageCollectedFinalized<DOMWindowSpeechSynthesis>, public WillBeHeapSupplement<LocalDOMWindow>, public DOMWindowProperty {
WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(DOMWindowSpeechSynthesis);
public:
virtual ~DOMWindowSpeechSynthesis();
- static SpeechSynthesis* speechSynthesis(DOMWindow&);
- static DOMWindowSpeechSynthesis& from(DOMWindow&);
+ static SpeechSynthesis* speechSynthesis(LocalDOMWindow&);
+ static DOMWindowSpeechSynthesis& from(LocalDOMWindow&);
void trace(Visitor*);
private:
- explicit DOMWindowSpeechSynthesis(DOMWindow&);
+ explicit DOMWindowSpeechSynthesis(LocalDOMWindow&);
SpeechSynthesis* speechSynthesis();
static const char* supplementName();
« no previous file with comments | « Source/modules/serviceworkers/NavigatorServiceWorker.cpp ('k') | Source/modules/speech/DOMWindowSpeechSynthesis.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698