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

Unified Diff: proxy_resolver.cc

Issue 5205002: AU: Manual proxy support (Closed) Base URL: http://git.chromium.org/git/update_engine.git@master
Patch Set: missed one fix for review Created 10 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 | « proxy_resolver.h ('k') | update_attempter.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: proxy_resolver.cc
diff --git a/proxy_resolver.cc b/proxy_resolver.cc
index 6b3bd933ce2e00926b4995097accaaccdf5ccf1d..4ec8d1e73b9c58ef99cabebbd9ef5a5263f8ddcd 100644
--- a/proxy_resolver.cc
+++ b/proxy_resolver.cc
@@ -4,15 +4,15 @@
#include "update_engine/proxy_resolver.h"
+using std::deque;
using std::string;
-using std::vector;
namespace chromeos_update_engine {
const char kNoProxy[] = "direct://";
bool DirectProxyResolver::GetProxiesForUrl(const string& url,
- vector<string>* out_proxies) {
+ deque<string>* out_proxies) {
out_proxies->clear();
out_proxies->push_back(kNoProxy);
return true;
« no previous file with comments | « proxy_resolver.h ('k') | update_attempter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698