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

Unified Diff: net/data/proxy_resolver_v8_tracing_unittest/global_sideffects4.js

Issue 992733002: Remove //net (except for Android test stuff) and sdch (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 9 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/data/proxy_resolver_v8_tracing_unittest/global_sideffects4.js
diff --git a/net/data/proxy_resolver_v8_tracing_unittest/global_sideffects4.js b/net/data/proxy_resolver_v8_tracing_unittest/global_sideffects4.js
deleted file mode 100644
index 1bfbbfd88e5079d9301bf85a1b074420cb189d25..0000000000000000000000000000000000000000
--- a/net/data/proxy_resolver_v8_tracing_unittest/global_sideffects4.js
+++ /dev/null
@@ -1,15 +0,0 @@
-var g_iteration = 0;
-
-function FindProxyForURL(url, host) {
- g_iteration++;
-
- for (var i = 0; i < g_iteration; ++i) {
- myIpAddress();
- }
-
- var result = '' + dnsResolve('host' + g_iteration);
- result += g_iteration;
-
- alert('iteration: ' + g_iteration);
- return 'PROXY ' + result + ':34';
-}

Powered by Google App Engine
This is Rietveld 408576698