From 5b2a62627e3dbe041bd86983b9853a933f1f364c Mon Sep 17 00:00:00 2001 From: Adam Roben Date: Mon, 7 Jul 2014 13:55:10 -0400 Subject: [PATCH] Silence unused variable warning on Windows --- brightray/browser/url_request_context_getter.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/brightray/browser/url_request_context_getter.cc b/brightray/browser/url_request_context_getter.cc index 07bbe9f88bb..ceddfb14acf 100644 --- a/brightray/browser/url_request_context_getter.cc +++ b/brightray/browser/url_request_context_getter.cc @@ -154,6 +154,7 @@ net::URLRequestContext* URLRequestContextGetter::GetURLRequestContext() { end = protocol_handlers_.end(); it != end; ++it) { bool set_protocol = job_factory->SetProtocolHandler( it->first, it->second.release()); + ALLOW_UNUSED(set_protocol); DCHECK(set_protocol); } protocol_handlers_.clear();