diff options
author | iancottrell@chromium.org <iancottrell@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-05-02 17:07:40 +0000 |
---|---|---|
committer | iancottrell@chromium.org <iancottrell@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-05-02 17:07:40 +0000 |
commit | 595fe3fa08135ab7cb711cffc498b3c563a5368a (patch) | |
tree | e87fc0a9ba0d9fce19e7568e28d18fb1c8238579 /tools/cr | |
parent | 12fe836cf65973572c225610e715891b850a49fd (diff) | |
download | chromium_src-595fe3fa08135ab7cb711cffc498b3c563a5368a.zip chromium_src-595fe3fa08135ab7cb711cffc498b3c563a5368a.tar.gz chromium_src-595fe3fa08135ab7cb711cffc498b3c563a5368a.tar.bz2 |
[cr tool] Remove default values for CR_URL, they were incorrectly placed and so not active anyway, so people obviously don't miss them
BUG=309573
Review URL: https://codereview.chromium.org/260893005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@267825 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools/cr')
-rw-r--r-- | tools/cr/cr/targets/chrome.py | 4 | ||||
-rw-r--r-- | tools/cr/cr/targets/chrome_shell.py | 4 | ||||
-rw-r--r-- | tools/cr/cr/targets/content_shell.py | 4 |
3 files changed, 0 insertions, 12 deletions
diff --git a/tools/cr/cr/targets/chrome.py b/tools/cr/cr/targets/chrome.py index 49d09ee..5b63365 100644 --- a/tools/cr/cr/targets/chrome.py +++ b/tools/cr/cr/targets/chrome.py @@ -9,10 +9,6 @@ import cr class ChromeTarget(cr.NamedTarget): NAME = 'chrome' - DEFAULT = cr.Config.From( - # CR_URL is the page to open when the target is run. - CR_URL='https://www.google.com/', - ) CONFIG = cr.Config.From( CR_RUN_ARGUMENTS=cr.Config.Optional('-d "{CR_URL!e}"'), CR_TARGET_NAME='Chrome', diff --git a/tools/cr/cr/targets/chrome_shell.py b/tools/cr/cr/targets/chrome_shell.py index bd326c4..65ff627 100644 --- a/tools/cr/cr/targets/chrome_shell.py +++ b/tools/cr/cr/targets/chrome_shell.py @@ -9,10 +9,6 @@ import cr class ChromeShellTarget(cr.NamedTarget): NAME = 'chrome_shell' - DEFAULT = cr.Config.From( - # CR_URL is the page to open when the target is run. - CR_URL='https://www.google.com/', - ) CONFIG = cr.Config.From( CR_RUN_ARGUMENTS=cr.Config.Optional('-d "{CR_URL!e}"'), CR_TARGET_NAME='ChromeShell', diff --git a/tools/cr/cr/targets/content_shell.py b/tools/cr/cr/targets/content_shell.py index f4a415d..b8d7fee 100644 --- a/tools/cr/cr/targets/content_shell.py +++ b/tools/cr/cr/targets/content_shell.py @@ -9,10 +9,6 @@ import cr class ContentShellTarget(cr.NamedTarget): NAME = 'content_shell' - DEFAULT = cr.Config.From( - # CR_URL is the page to open when the target is run. - CR_URL='https://www.google.com/', - ) CONFIG = cr.Config.From( CR_RUN_ARGUMENTS=cr.Config.Optional('-d "{CR_URL!e}"'), CR_TARGET_NAME='ContentShell', |