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

Unified Diff: Source/modules/webmidi/MIDIClient.h

Issue 317413003: Move MIDI code to hang off WebFrame. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: fix webkit tests 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
« no previous file with comments | « Source/modules/webmidi/MIDIAccess.cpp ('k') | Source/modules/webmidi/MIDIController.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/webmidi/MIDIClient.h
diff --git a/Source/modules/webmidi/MIDIClient.h b/Source/modules/webmidi/MIDIClient.h
index e07acd4da4e6e6b5e04724df190acdecacb2bbc8..3646e7047fa6431e8afc396e7248d6e78282ecf9 100644
--- a/Source/modules/webmidi/MIDIClient.h
+++ b/Source/modules/webmidi/MIDIClient.h
@@ -35,8 +35,8 @@
namespace WebCore {
+class LocalFrame;
class MIDIAccess;
-class Page;
class MIDIClient {
public:
@@ -46,7 +46,7 @@ public:
virtual ~MIDIClient() { }
};
-void provideMIDITo(Page&, PassOwnPtr<MIDIClient>);
+void provideMIDITo(LocalFrame&, PassOwnPtr<MIDIClient>);
} // namespace WebCore
« no previous file with comments | « Source/modules/webmidi/MIDIAccess.cpp ('k') | Source/modules/webmidi/MIDIController.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698