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

Unified Diff: content/renderer/media/midi_dispatcher.cc

Issue 210003002: Web MIDI API renaming: the second step of three step changes (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: (rebase) Created 6 years, 9 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 | « content/renderer/media/midi_dispatcher.h ('k') | content/shell/renderer/test_runner/test_runner.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/media/midi_dispatcher.cc
diff --git a/content/renderer/media/midi_dispatcher.cc b/content/renderer/media/midi_dispatcher.cc
index a7c0679a449bce55c591999020f85eb0c4b36f1c..7d81cd92be467b09732b46fc58dcec7cd7cdc804 100644
--- a/content/renderer/media/midi_dispatcher.cc
+++ b/content/renderer/media/midi_dispatcher.cc
@@ -32,7 +32,7 @@ bool MidiDispatcher::OnMessageReceived(const IPC::Message& message) {
return handled;
}
-void MidiDispatcher::requestSysExPermission(
+void MidiDispatcher::requestSysexPermission(
const WebMIDIPermissionRequest& request) {
int bridge_id = requests_.Add(new WebMIDIPermissionRequest(request));
WebSecurityOrigin security_origin = request.securityOrigin();
@@ -41,7 +41,7 @@ void MidiDispatcher::requestSysExPermission(
Send(new MidiHostMsg_RequestSysExPermission(routing_id(), bridge_id, url));
}
-void MidiDispatcher::cancelSysExPermissionRequest(
+void MidiDispatcher::cancelSysexPermissionRequest(
const WebMIDIPermissionRequest& request) {
for (IDMap<WebMIDIPermissionRequest>::iterator it(&requests_);
!it.IsAtEnd();
« no previous file with comments | « content/renderer/media/midi_dispatcher.h ('k') | content/shell/renderer/test_runner/test_runner.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698