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

Unified Diff: chrome/renderer/worker_content_settings_client_proxy.cc

Issue 2651543007: Use explicit WebString conversions in remaining chrome/renderer files (Closed)
Patch Set: Created 3 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/renderer/web_apps.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/renderer/worker_content_settings_client_proxy.cc
diff --git a/chrome/renderer/worker_content_settings_client_proxy.cc b/chrome/renderer/worker_content_settings_client_proxy.cc
index 0056280db4c0b414dee4981fae750c37f41e47eb..e4eb6c4f392cd294437aaf78c66d0a861c88ad41 100644
--- a/chrome/renderer/worker_content_settings_client_proxy.cc
+++ b/chrome/renderer/worker_content_settings_client_proxy.cc
@@ -48,6 +48,7 @@ bool WorkerContentSettingsClientProxy::allowIndexedDB(
bool result = false;
sync_message_filter_->Send(new ChromeViewHostMsg_AllowIndexedDB(
- routing_id_, document_origin_url_, top_frame_origin_url_, name, &result));
+ routing_id_, document_origin_url_, top_frame_origin_url_, name.utf16(),
+ &result));
return result;
}
« no previous file with comments | « chrome/renderer/web_apps.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698