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

Unified Diff: chrome/test/functional/perf.py

Issue 11772003: Fix netsim test after r175149. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 12 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: chrome/test/functional/perf.py
diff --git a/chrome/test/functional/perf.py b/chrome/test/functional/perf.py
index df8caad320d9106d41f58daa51f6ea21b2d55c47..6c8fd6e7c2ee899e0366072e647e0d3793a2a4f9 100755
--- a/chrome/test/functional/perf.py
+++ b/chrome/test/functional/perf.py
@@ -2291,9 +2291,9 @@ class PageCyclerReplay(object):
WEBPAGEREPLAY_HTTPS_PORT = 8413
CHROME_FLAGS = webpagereplay.GetChromeFlags(
- self.WEBPAGEREPLAY_HOST,
- self.WEBPAGEREPLAY_HTTP_PORT,
- self.WEBPAGEREPLAY_HTTPS_PORT) + [
+ WEBPAGEREPLAY_HOST,
+ WEBPAGEREPLAY_HTTP_PORT,
+ WEBPAGEREPLAY_HTTPS_PORT) + [
'--log-level=0',
'--disable-background-networking',
'--enable-experimental-extension-apis',
@@ -2313,9 +2313,9 @@ class PageCyclerReplay(object):
def ReplayServer(cls, test_name, replay_options=None):
archive_path = cls.Path('archive', test_name=test_name)
return webpagereplay.ReplayServer(archive_path,
- self.WEBPAGEREPLAY_HOST,
- self.WEBPAGEREPLAY_HTTP_PORT,
- self.WEBPAGEREPLAY_HTTPS_PORT,
+ cls.WEBPAGEREPLAY_HOST,
+ cls.WEBPAGEREPLAY_HTTP_PORT,
+ cls.WEBPAGEREPLAY_HTTPS_PORT,
replay_options)
« 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