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

Unified Diff: tools/chrome_remote_control/chrome_remote_control/page_set.py

Issue 11314012: Add spaceport benchmark to Chrome Remote Control. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Don't display warning if all urls in page set are file urls Created 8 years, 2 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: tools/chrome_remote_control/chrome_remote_control/page_set.py
diff --git a/tools/chrome_remote_control/chrome_remote_control/page_set.py b/tools/chrome_remote_control/chrome_remote_control/page_set.py
index adc127dc166c159474aad946e7ac9488b81156fa..dd605945a525a0cced397d95eb1faf2413e26587 100644
--- a/tools/chrome_remote_control/chrome_remote_control/page_set.py
+++ b/tools/chrome_remote_control/chrome_remote_control/page_set.py
@@ -31,7 +31,8 @@ class PageSet(object):
page_set = cls(file_path, data)
for page_attributes in data['pages']:
url = page_attributes.pop('url')
nduca 2012/11/04 19:53:30 These changes feel significant. They should have u
tonyg 2012/11/05 23:02:01 Done.
- page = page_module.Page(url, page_attributes)
+ page = page_module.Page(url, attributes=page_attributes,
+ base_dir=file_path)
page_set.pages.append(page)
return page_set

Powered by Google App Engine
This is Rietveld 408576698