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

Unified Diff: ppapi/native_client/tools/browser_tester/browsertester/browserlauncher.py

Issue 12213117: nacl_integration: disable DNS prefetching and sync. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Comments Created 7 years, 10 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/native_client/tools/browser_tester/browsertester/browserlauncher.py
diff --git a/ppapi/native_client/tools/browser_tester/browsertester/browserlauncher.py b/ppapi/native_client/tools/browser_tester/browsertester/browserlauncher.py
index 1b25f20385a2754cbd8e99aca62242d84be399ce..44d38afa1221d7cd86749366831329baded9778b 100755
--- a/ppapi/native_client/tools/browser_tester/browsertester/browserlauncher.py
+++ b/ppapi/native_client/tools/browser_tester/browsertester/browserlauncher.py
@@ -271,6 +271,12 @@ class ChromeLauncher(BrowserLauncher):
# Windows (see http://crbug.com/169941).
'--disable-web-resources',
'--disable-preconnect',
+ # This is speculative, sync should not occur with a clean profile.
+ '--disable-sync',
+ # This prevents Chrome from making "hidden" network requests at
+ # startup. These requests could be a source of non-determinism,
+ # and they also add noise to the netlogs.
+ '--dns-prefetch-disable',
'--no-first-run',
'--no-default-browser-check',
'--log-level=1',
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698