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

Unified Diff: content/renderer/presentation/presentation_dispatcher.cc

Issue 2506813003: Use new wrapper types for web_bluetooth.mojom (Closed)
Patch Set: address more comments Created 4 years, 1 month 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/bluetooth/web_bluetooth_impl.cc ('k') | device/bluetooth/public/interfaces/uuid.typemap » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/presentation/presentation_dispatcher.cc
diff --git a/content/renderer/presentation/presentation_dispatcher.cc b/content/renderer/presentation/presentation_dispatcher.cc
index 325cac65c7892474fdff2f974d21d4bd3557c4bf..75435adc81fe8f40cbc6932282e127bb3e060dbc 100644
--- a/content/renderer/presentation/presentation_dispatcher.cc
+++ b/content/renderer/presentation/presentation_dispatcher.cc
@@ -273,7 +273,7 @@ void PresentationDispatcher::startListening(
auto status_it = availability_status_.find(observer->url());
if (status_it == availability_status_.end()) {
DLOG(WARNING) << "Start listening for availability for unknown URL "
- << observer->url();
+ << GURL(observer->url());
return;
}
status_it->second->availability_observers.insert(observer);
@@ -285,7 +285,7 @@ void PresentationDispatcher::stopListening(
auto status_it = availability_status_.find(observer->url());
if (status_it == availability_status_.end()) {
DLOG(WARNING) << "Stop listening for availability for unknown URL "
- << observer->url();
+ << GURL(observer->url());
return;
}
status_it->second->availability_observers.erase(observer);
« no previous file with comments | « content/renderer/bluetooth/web_bluetooth_impl.cc ('k') | device/bluetooth/public/interfaces/uuid.typemap » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698