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

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

Issue 683013002: Extract a DOMWindow interface from LocalDOMWindow and use it in the idl. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase on top of DOMWindow moves and UseCounter overload for Frame Created 6 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: Source/modules/speech/DOMWindowSpeechSynthesis.h
diff --git a/Source/modules/speech/DOMWindowSpeechSynthesis.h b/Source/modules/speech/DOMWindowSpeechSynthesis.h
index b13db9b6609dbe91daa09a804151ec719a4691b7..548b0ba2aa5e9ac346d54e5a52be742b58ae5343 100644
--- a/Source/modules/speech/DOMWindowSpeechSynthesis.h
+++ b/Source/modules/speech/DOMWindowSpeechSynthesis.h
@@ -33,13 +33,13 @@
namespace blink {
-class LocalDOMWindow;
+class DOMWindow;
class DOMWindowSpeechSynthesis final : public NoBaseWillBeGarbageCollected<DOMWindowSpeechSynthesis>, public WillBeHeapSupplement<LocalDOMWindow>, public DOMWindowProperty {
WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(DOMWindowSpeechSynthesis);
DECLARE_EMPTY_DESTRUCTOR_WILL_BE_REMOVED(DOMWindowSpeechSynthesis);
public:
- static SpeechSynthesis* speechSynthesis(LocalDOMWindow&);
+ static SpeechSynthesis* speechSynthesis(DOMWindow&);
static DOMWindowSpeechSynthesis& from(LocalDOMWindow&);
void trace(Visitor*);

Powered by Google App Engine
This is Rietveld 408576698