summaryrefslogtreecommitdiffstats
path: root/tools/android
diff options
context:
space:
mode:
authormattcary <mattcary@chromium.org>2016-03-16 06:06:46 -0700
committerCommit bot <commit-bot@chromium.org>2016-03-16 13:08:14 +0000
commite5aa4f8b6b4b06e0a163098f31748d048ff50b98 (patch)
tree6fa32c538d50a4dfb2b2c5596897b0bf79be3fdf /tools/android
parent9d1489001712b5ba492f16020bd06e73cbacaf86 (diff)
downloadchromium_src-e5aa4f8b6b4b06e0a163098f31748d048ff50b98.zip
chromium_src-e5aa4f8b6b4b06e0a163098f31748d048ff50b98.tar.gz
chromium_src-e5aa4f8b6b4b06e0a163098f31748d048ff50b98.tar.bz2
tools/android/loading: Remove spaces from network emulation names to make scriptability easier.
Review URL: https://codereview.chromium.org/1802743003 Cr-Commit-Position: refs/heads/master@{#381439}
Diffstat (limited to 'tools/android')
-rw-r--r--tools/android/loading/emulation.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/tools/android/loading/emulation.py b/tools/android/loading/emulation.py
index fa2fd89..d7f05c6 100644
--- a/tools/android/loading/emulation.py
+++ b/tools/android/loading/emulation.py
@@ -14,16 +14,16 @@ import json
NETWORK_CONDITIONS = {
'GPRS': {
'download': 50 * 1024 / 8, 'upload': 20 * 1024 / 8, 'latency': 500},
- 'Regular 2G': {
+ 'Regular2G': {
'download': 250 * 1024 / 8, 'upload': 50 * 1024 / 8, 'latency': 300},
- 'Good 2G': {
+ 'Good2G': {
'download': 450 * 1024 / 8, 'upload': 150 * 1024 / 8, 'latency': 150},
- 'Regular 3G': {
+ 'Regular3G': {
'download': 750 * 1024 / 8, 'upload': 250 * 1024 / 8, 'latency': 100},
- 'Good 3G': {
+ 'Good3G': {
'download': 1.5 * 1024 * 1024 / 8, 'upload': 750 * 1024 / 8,
'latency': 40},
- 'Regular 4G': {
+ 'Regular4G': {
'download': 4 * 1024 * 1024 / 8, 'upload': 3 * 1024 * 1024 / 8,
'latency': 20},
'DSL': {