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

Unified Diff: chrome/test/data/extensions/api_test/proxy/individual/test.js

Issue 144623006: Implement support for QUIC proxies in ProxyServer (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix comments Created 6 years, 11 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 | « chrome/common/extensions/api/proxy.json ('k') | net/proxy/proxy_info.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/data/extensions/api_test/proxy/individual/test.js
diff --git a/chrome/test/data/extensions/api_test/proxy/individual/test.js b/chrome/test/data/extensions/api_test/proxy/individual/test.js
index 40013132d074ddcaf94ea160f9ac7a9ec029c0a8..d2d39aa4cd796908ad8367f2ca8eb2669c4ee67c 100644
--- a/chrome/test/data/extensions/api_test/proxy/individual/test.js
+++ b/chrome/test/data/extensions/api_test/proxy/individual/test.js
@@ -12,12 +12,13 @@ function expect(expected, message) {
}
var httpProxy = {
+ scheme: "quic",
host: "1.1.1.1"
};
var httpProxyExpected = {
- scheme: "http",
+ scheme: "quic",
host: "1.1.1.1",
- port: 80
+ port: 443
};
var httpsProxy = {
host: "2.2.2.2"
« no previous file with comments | « chrome/common/extensions/api/proxy.json ('k') | net/proxy/proxy_info.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698