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

Unified Diff: net/proxy/proxy_config.cc

Issue 7605019: Reduce number of unnamed-type-template-args violations. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 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
Index: net/proxy/proxy_config.cc
===================================================================
--- net/proxy/proxy_config.cc (revision 98480)
+++ net/proxy/proxy_config.cc (working copy)
@@ -158,8 +158,11 @@
return NULL; // No mapping for this scheme.
}
+// static
+const ProxyConfig::ID ProxyConfig::kInvalidConfigID = 0;
+
ProxyConfig::ProxyConfig()
- : auto_detect_(false), pac_mandatory_(false), id_(INVALID_ID) {
+ : auto_detect_(false), pac_mandatory_(false), id_(kInvalidConfigID) {
}
ProxyConfig::ProxyConfig(const ProxyConfig& config)

Powered by Google App Engine
This is Rietveld 408576698