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

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

Issue 102593002: Convert string16 to base::string16 in content. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years 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/java/java_bridge_dispatcher.cc ('k') | content/renderer/media/rtc_data_channel_handler.cc » ('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 e5dccf3c4e4d6b8798e12d0c76a6dd1a90be9762..1f04e3e22f8f0262d4343a31b4d7886f737e9b72 100644
--- a/content/renderer/media/midi_dispatcher.cc
+++ b/content/renderer/media/midi_dispatcher.cc
@@ -48,7 +48,7 @@ void MIDIDispatcher::cancelSysExPermissionRequest(
it.Advance()) {
WebMIDIPermissionRequest* value = it.GetCurrentValue();
if (value->equals(request)) {
- string16 origin = request.securityOrigin().toString();
+ base::string16 origin = request.securityOrigin().toString();
Send(new MIDIHostMsg_CancelSysExPermissionRequest(
routing_id(), it.GetCurrentKey(), GURL(origin)));
requests_.Remove(it.GetCurrentKey());
« no previous file with comments | « content/renderer/java/java_bridge_dispatcher.cc ('k') | content/renderer/media/rtc_data_channel_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698