diff options
author | nirnimesh@chromium.org <nirnimesh@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-06-28 22:04:00 +0000 |
---|---|---|
committer | nirnimesh@chromium.org <nirnimesh@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-06-28 22:04:00 +0000 |
commit | 44eed9ff188a565ebd56d6e1084921eaae4af98d (patch) | |
tree | b807e78f4c77fa6759d9cb8e260653bdd89e666f /chrome/test | |
parent | 479a85d400996001fc4bc3cf4e471f39b0cdf4ac (diff) | |
download | chromium_src-44eed9ff188a565ebd56d6e1084921eaae4af98d.zip chromium_src-44eed9ff188a565ebd56d6e1084921eaae4af98d.tar.gz chromium_src-44eed9ff188a565ebd56d6e1084921eaae4af98d.tar.bz2 |
PyAuto: Collect branding info as a part of GetBrowserInfo()
Also, use command_line_string() from base/command_line.h which is
cross-platform now.
Review URL: http://codereview.chromium.org/2800029
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@51055 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/test')
-rw-r--r-- | chrome/test/pyautolib/pyauto.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/chrome/test/pyautolib/pyauto.py b/chrome/test/pyautolib/pyauto.py index 72cd720..661b7c3 100644 --- a/chrome/test/pyautolib/pyauto.py +++ b/chrome/test/pyautolib/pyauto.py @@ -497,7 +497,8 @@ class PyUITest(pyautolib.PyUITestBase, unittest.TestCase): u'HelperProcessExecutableName': u'Chromium Helper', u'HelperProcessExecutablePath': u'Chromium Helper.app/Contents/' 'MacOS/Chromium Helper', - u'command_line_string': "COMMAND_LINE_STRING --WITH-FLAGS"}, + u'command_line_string': "COMMAND_LINE_STRING --WITH-FLAGS", + u'branding': 'Chromium',} # The order of the windows and tabs listed here will be the same as # what shows up on screen. u'windows': [ { u'index': 0, |