summaryrefslogtreecommitdiffstats
path: root/tools/cr
diff options
context:
space:
mode:
authoriancottrell@chromium.org <iancottrell@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-05-02 17:07:40 +0000
committeriancottrell@chromium.org <iancottrell@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-05-02 17:07:40 +0000
commit595fe3fa08135ab7cb711cffc498b3c563a5368a (patch)
treee87fc0a9ba0d9fce19e7568e28d18fb1c8238579 /tools/cr
parent12fe836cf65973572c225610e715891b850a49fd (diff)
downloadchromium_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.py4
-rw-r--r--tools/cr/cr/targets/chrome_shell.py4
-rw-r--r--tools/cr/cr/targets/content_shell.py4
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',