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

Unified Diff: Source/web/MIDIClientProxy.cpp

Issue 462353003: Cleanup namespace usage in Source/web[A-V]*.cpp (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Minor updates Created 6 years, 4 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/web/LocalFileSystemClient.cpp ('k') | Source/web/MediaKeysClientImpl.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/MIDIClientProxy.cpp
diff --git a/Source/web/MIDIClientProxy.cpp b/Source/web/MIDIClientProxy.cpp
index 4a736616a7f58fc3060c022809cae214eaa2092c..4f5ded60d9f5e1dc056de5feb56b71f67752620c 100644
--- a/Source/web/MIDIClientProxy.cpp
+++ b/Source/web/MIDIClientProxy.cpp
@@ -42,7 +42,7 @@ MIDIClientProxy::MIDIClientProxy(WebMIDIClient* client)
{
}
-void MIDIClientProxy::requestSysexPermission(blink::MIDIAccessInitializer* initializer)
+void MIDIClientProxy::requestSysexPermission(MIDIAccessInitializer* initializer)
{
if (m_client)
m_client->requestSysexPermission(WebMIDIPermissionRequest(initializer));
@@ -50,7 +50,7 @@ void MIDIClientProxy::requestSysexPermission(blink::MIDIAccessInitializer* initi
initializer->setSysexEnabled(false);
}
-void MIDIClientProxy::cancelSysexPermissionRequest(blink::MIDIAccessInitializer* initializer)
+void MIDIClientProxy::cancelSysexPermissionRequest(MIDIAccessInitializer* initializer)
{
if (m_client)
m_client->cancelSysexPermissionRequest(WebMIDIPermissionRequest(initializer));
« no previous file with comments | « Source/web/LocalFileSystemClient.cpp ('k') | Source/web/MediaKeysClientImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698