Index: Source/modules/webmidi/MIDIOutput.cpp |
diff --git a/Source/modules/webmidi/MIDIOutput.cpp b/Source/modules/webmidi/MIDIOutput.cpp |
index a40f797a09225a9d8283d81a37d448d4cc7a5708..268e9667a6812793577ec10fe4a1c4e7cbb0dd78 100644 |
--- a/Source/modules/webmidi/MIDIOutput.cpp |
+++ b/Source/modules/webmidi/MIDIOutput.cpp |
@@ -34,7 +34,7 @@ |
#include "bindings/v8/ExceptionState.h" |
#include "core/dom/ExceptionCode.h" |
#include "core/dom/ExecutionContext.h" |
-#include "core/frame/DOMWindow.h" |
+#include "core/frame/LocalDOMWindow.h" |
#include "core/timing/Performance.h" |
#include "modules/webmidi/MIDIAccess.h" |
@@ -44,7 +44,7 @@ namespace { |
double now(ExecutionContext* context) |
{ |
- DOMWindow* window = context ? context->executingWindow() : 0; |
+ LocalDOMWindow* window = context ? context->executingWindow() : 0; |
Performance* performance = window ? &window->performance() : 0; |
return performance ? performance->now() : 0.0; |
} |