| 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);
|
|
|