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

Unified Diff: chrome/browser/profiles/profile_impl.cc

Issue 151343002: Web MIDI: make naming convention be consistent (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: review boliu #2 Created 6 years, 11 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 | « chrome/browser/profiles/profile_impl.h ('k') | chrome/browser/ui/app_list/test/fake_profile.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/profiles/profile_impl.cc
diff --git a/chrome/browser/profiles/profile_impl.cc b/chrome/browser/profiles/profile_impl.cc
index 3449c31c9b4a2de4de7281e2bce8a118b1bf54c9..2dade9a62a442b118b819f5bbf2d0b72d5eeb4e0 100644
--- a/chrome/browser/profiles/profile_impl.cc
+++ b/chrome/browser/profiles/profile_impl.cc
@@ -983,29 +983,29 @@ ProfileImpl::GetMediaRequestContextForStoragePartition(
.GetIsolatedMediaRequestContextGetter(partition_path, in_memory).get();
}
-void ProfileImpl::RequestMIDISysExPermission(
+void ProfileImpl::RequestMidiSysExPermission(
int render_process_id,
int render_view_id,
int bridge_id,
const GURL& requesting_frame,
- const MIDISysExPermissionCallback& callback) {
- ChromeMIDIPermissionContext* context =
- ChromeMIDIPermissionContextFactory::GetForProfile(this);
- context->RequestMIDISysExPermission(render_process_id,
+ const MidiSysExPermissionCallback& callback) {
+ ChromeMidiPermissionContext* context =
+ ChromeMidiPermissionContextFactory::GetForProfile(this);
+ context->RequestMidiSysExPermission(render_process_id,
render_view_id,
bridge_id,
requesting_frame,
callback);
}
-void ProfileImpl::CancelMIDISysExPermissionRequest(
+void ProfileImpl::CancelMidiSysExPermissionRequest(
int render_process_id,
int render_view_id,
int bridge_id,
const GURL& requesting_frame) {
- ChromeMIDIPermissionContext* context =
- ChromeMIDIPermissionContextFactory::GetForProfile(this);
- context->CancelMIDISysExPermissionRequest(
+ ChromeMidiPermissionContext* context =
+ ChromeMidiPermissionContextFactory::GetForProfile(this);
+ context->CancelMidiSysExPermissionRequest(
render_process_id, render_view_id, bridge_id, requesting_frame);
}
« no previous file with comments | « chrome/browser/profiles/profile_impl.h ('k') | chrome/browser/ui/app_list/test/fake_profile.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698