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

Unified Diff: tools/telemetry/telemetry/core/platform/linux_platform_backend.py

Issue 126093006: [telemetry] Allow public page set data and WPR archives. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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
Index: tools/telemetry/telemetry/core/platform/linux_platform_backend.py
diff --git a/tools/telemetry/telemetry/core/platform/linux_platform_backend.py b/tools/telemetry/telemetry/core/platform/linux_platform_backend.py
index f13f76e03c18fa961b0e8c20c1f65eb3a5d73828..44dfd01bc5db6b44b7f2a8db867b7fb3970e152d 100644
--- a/tools/telemetry/telemetry/core/platform/linux_platform_backend.py
+++ b/tools/telemetry/telemetry/core/platform/linux_platform_backend.py
@@ -67,9 +67,9 @@ class LinuxPlatformBackend(
try:
changed = cloud_storage.GetIfChanged(
- cloud_storage.INTERNAL_BUCKET, ipfw_bin)
+ ipfw_bin, cloud_storage.INTERNAL_BUCKET)
changed |= cloud_storage.GetIfChanged(
- cloud_storage.INTERNAL_BUCKET, ipfw_mod)
+ ipfw_mod, cloud_storage.INTERNAL_BUCKET)
except cloud_storage.CloudStorageError, e:
logging.error(e)
logging.error('You may proceed by manually installing dummynet. See: '
@@ -90,7 +90,7 @@ class LinuxPlatformBackend(
os.environ['PATH'] += os.pathsep + telemetry_bin_dir
try:
- cloud_storage.GetIfChanged(cloud_storage.INTERNAL_BUCKET, avconv_bin)
+ cloud_storage.GetIfChanged(avconv_bin, cloud_storage.INTERNAL_BUCKET)
except cloud_storage.CloudStorageError, e:
logging.error(e)
logging.error('You may proceed by manually installing avconv via:\n'

Powered by Google App Engine
This is Rietveld 408576698