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

Unified Diff: components/invalidation/invalidation.cc

Issue 503353002: Remove implicit conversions from scoped_refptr to T* in components/invalidation/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 | « components/invalidation/gcm_network_channel.cc ('k') | components/invalidation/non_blocking_invalidator.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/invalidation/invalidation.cc
diff --git a/components/invalidation/invalidation.cc b/components/invalidation/invalidation.cc
index f6d2c77ea3f1f08054856a2063fd43534627322e..8b04e3f52421dc0b42786a082f13c8420d9841d8 100644
--- a/components/invalidation/invalidation.cc
+++ b/components/invalidation/invalidation.cc
@@ -119,7 +119,7 @@ void Invalidation::SetAckHandler(
}
bool Invalidation::SupportsAcknowledgement() const {
- return !!ack_handler_task_runner_;
+ return !!ack_handler_task_runner_.get();
}
void Invalidation::Acknowledge() const {
« no previous file with comments | « components/invalidation/gcm_network_channel.cc ('k') | components/invalidation/non_blocking_invalidator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698