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

Unified Diff: ios/chrome/browser/updatable_config/updatable_config_base.mm

Issue 1440593004: Make operators on scoped_ptr match the ones defined for std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: scopedptrequals: followupfix-after-rebase Created 5 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 | « device/serial/serial_io_handler_win.cc ('k') | net/spdy/spdy_write_queue_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ios/chrome/browser/updatable_config/updatable_config_base.mm
diff --git a/ios/chrome/browser/updatable_config/updatable_config_base.mm b/ios/chrome/browser/updatable_config/updatable_config_base.mm
index 49a793de3a897cd894b4ca34032df2e821b0a872..027f699bfc1c5e576936c9b0a1b40dab1ab698b6 100644
--- a/ios/chrome/browser/updatable_config/updatable_config_base.mm
+++ b/ios/chrome/browser/updatable_config/updatable_config_base.mm
@@ -63,7 +63,7 @@ class ConfigFetcher : public net::URLFetcherDelegate {
}
void OnURLFetchComplete(const net::URLFetcher* fetcher) override {
- DCHECK_EQ(fetcher_, fetcher);
+ DCHECK_EQ(fetcher_.get(), fetcher);
NSData* responseData = nil;
if (fetcher_->GetResponseCode() == net::HTTP_OK) {
std::string response;
« no previous file with comments | « device/serial/serial_io_handler_win.cc ('k') | net/spdy/spdy_write_queue_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698