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

Issue 565803002: Removing browser.Start() and instead starts the browser at the point of creation. (Closed)

Created:
6 years, 3 months ago by wuhu
Modified:
6 years, 2 months ago
CC:
chromium-reviews, chromium-apps-reviews_chromium.org, extensions-reviews_chromium.org, telemetry+watch_chromium.org
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Project:
chromium
Visibility:
Public.

Description

Removing browser.Start() and instead starts the browser at the point of creation. BUG=412126 Committed: https://crrev.com/01c68e8765254d9971296b291ff718b4f6af3004 Cr-Commit-Position: refs/heads/master@{#295591} Committed: https://crrev.com/74c6ef17a08754abadb6fb64da14249898285fa8 Cr-Commit-Position: refs/heads/master@{#296107} Committed: https://crrev.com/351c0f63466ac66eb03faaa85b27b98ae9c2b43c Cr-Commit-Position: refs/heads/master@{#296500}

Patch Set 1 #

Patch Set 2 : PageTest.WillStartBrowser now depends on platform #

Total comments: 1

Patch Set 3 : clean up #

Patch Set 4 : ignore E0202 error for property #

Total comments: 1

Patch Set 5 : adding a space in #pylint #

Patch Set 6 : updated cros browser constructor #

Patch Set 7 : bug fix #

Patch Set 8 : resolve merge conflict #

Unified diffs Side-by-side diffs Delta from patch set Stats (+91 lines, -37 lines) Patch
M tools/telemetry/telemetry/core/backends/chrome/android_browser_finder.py View 1 2 3 4 5 6 7 1 chunk +6 lines, -1 line 0 comments Download
M tools/telemetry/telemetry/core/backends/chrome/cros_browser_finder.py View 1 2 3 4 5 6 1 chunk +12 lines, -2 lines 0 comments Download
M tools/telemetry/telemetry/core/backends/chrome/cros_browser_with_oobe.py View 1 2 3 4 5 1 chunk +9 lines, -2 lines 0 comments Download
M tools/telemetry/telemetry/core/backends/chrome/desktop_browser_finder.py View 1 2 3 4 5 6 7 1 chunk +6 lines, -1 line 0 comments Download
M tools/telemetry/telemetry/core/backends/chrome/ios_browser_finder.py View 1 1 chunk +6 lines, -1 line 0 comments Download
M tools/telemetry/telemetry/core/backends/webdriver/webdriver_desktop_browser_finder.py View 1 1 chunk +6 lines, -1 line 0 comments Download
M tools/telemetry/telemetry/core/browser.py View 1 2 3 4 5 6 4 chunks +28 lines, -18 lines 0 comments Download
M tools/telemetry/telemetry/core/browser_credentials.py View 1 2 3 4 1 chunk +2 lines, -2 lines 0 comments Download
M tools/telemetry/telemetry/core/extension_unittest.py View 2 chunks +0 lines, -2 lines 0 comments Download
M tools/telemetry/telemetry/core/possible_browser.py View 1 2 2 chunks +13 lines, -0 lines 0 comments Download
M tools/telemetry/telemetry/page/page_runner.py View 1 2 3 4 5 6 7 1 chunk +3 lines, -6 lines 0 comments Download
M tools/telemetry/telemetry/unittest/browser_test_case.py View 1 chunk +0 lines, -1 line 0 comments Download

Messages

Total messages: 43 (15 generated)
wuhu
Note that we now have to pass Test object to the Browser so that Test.WillStartBrowser ...
6 years, 3 months ago (2014-09-12 00:09:18 UTC) #2
nednguyen
On 2014/09/12 00:09:18, wuhu wrote: > Note that we now have to pass Test object ...
6 years, 3 months ago (2014-09-12 00:17:25 UTC) #3
wuhu
413481
6 years, 3 months ago (2014-09-12 00:23:50 UTC) #4
nednguyen
LGTM https://codereview.chromium.org/565803002/diff/20001/tools/telemetry/telemetry/core/possible_browser.py File tools/telemetry/telemetry/core/possible_browser.py (right): https://codereview.chromium.org/565803002/diff/20001/tools/telemetry/telemetry/core/possible_browser.py#newcode84 tools/telemetry/telemetry/core/possible_browser.py:84: self._test = test Why do we need this?
6 years, 3 months ago (2014-09-17 16:20:14 UTC) #7
wuhu
Thanks for catching that, cleanup done.
6 years, 3 months ago (2014-09-17 20:15:43 UTC) #8
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patchset/565803002/40001
6 years, 3 months ago (2014-09-17 20:16:46 UTC) #10
commit-bot: I haz the power
Try jobs failed on following builders: chromium_presubmit on tryserver.chromium.linux (http://build.chromium.org/p/tryserver.chromium.linux/builders/chromium_presubmit/builds/11676)
6 years, 3 months ago (2014-09-17 20:27:40 UTC) #12
chromium-reviews
The chromium_presubmit error looks legit. On Wed, Sep 17, 2014 at 1:27 PM, <commit-bot@chromium.org> wrote: ...
6 years, 3 months ago (2014-09-17 21:12:21 UTC) #13
wuhu
Looks like a bug in pylint which was fixed in 0.25.2 (http://www.logilab.org/ticket/89092). My system is ...
6 years, 3 months ago (2014-09-18 00:35:32 UTC) #14
nednguyen
On 2014/09/18 00:35:32, wuhu wrote: > Looks like a bug in pylint which was fixed ...
6 years, 3 months ago (2014-09-18 01:22:07 UTC) #15
wuhu
Done, suppressing the error for now (as done else where in telemetry code base).
6 years, 3 months ago (2014-09-18 01:23:49 UTC) #16
nednguyen
https://codereview.chromium.org/565803002/diff/60001/tools/telemetry/telemetry/core/browser_credentials.py File tools/telemetry/telemetry/core/browser_credentials.py (right): https://codereview.chromium.org/565803002/diff/60001/tools/telemetry/telemetry/core/browser_credentials.py#newcode70 tools/telemetry/telemetry/core/browser_credentials.py:70: def credentials_path(self): #pylint: disable=E0202 Nit: please follow the style ...
6 years, 3 months ago (2014-09-18 01:25:35 UTC) #18
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patchset/565803002/60001
6 years, 3 months ago (2014-09-18 01:25:38 UTC) #19
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/565803002/60001
6 years, 3 months ago (2014-09-18 16:23:15 UTC) #22
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/565803002/80001
6 years, 3 months ago (2014-09-18 16:36:30 UTC) #25
commit-bot: I haz the power
Exceeded time limit waiting for builds to trigger.
6 years, 3 months ago (2014-09-18 22:38:45 UTC) #27
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/565803002/80001
6 years, 3 months ago (2014-09-18 22:54:40 UTC) #29
commit-bot: I haz the power
Committed patchset #5 (id:80001) as 432128763d797207b30840859de9a2f6bea39278
6 years, 3 months ago (2014-09-18 23:14:04 UTC) #30
commit-bot: I haz the power
Patchset 5 (id:??) landed as https://crrev.com/01c68e8765254d9971296b291ff718b4f6af3004 Cr-Commit-Position: refs/heads/master@{#295591}
6 years, 3 months ago (2014-09-18 23:14:47 UTC) #31
wuhu
A revert of this CL (patchset #5 id:80001) has been created in https://codereview.chromium.org/587853003/ by wuhu@google.com. ...
6 years, 3 months ago (2014-09-19 22:11:43 UTC) #32
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/565803002/120001
6 years, 2 months ago (2014-09-22 23:33:10 UTC) #35
commit-bot: I haz the power
Committed patchset #6 (id:120001) as be6b5b0b2230baae4a4074ecef5209f97f65193b
6 years, 2 months ago (2014-09-23 00:34:05 UTC) #36
commit-bot: I haz the power
Patchset 6 (id:??) landed as https://crrev.com/74c6ef17a08754abadb6fb64da14249898285fa8 Cr-Commit-Position: refs/heads/master@{#296107}
6 years, 2 months ago (2014-09-23 00:35:04 UTC) #37
wuhu
A revert of this CL (patchset #6 id:120001) has been created in https://codereview.chromium.org/601473002/ by wuhu@google.com. ...
6 years, 2 months ago (2014-09-23 18:10:36 UTC) #38
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/565803002/160001
6 years, 2 months ago (2014-09-24 19:34:47 UTC) #40
commit-bot: I haz the power
Committed patchset #8 (id:160001) as 1e40d0c8afb5fae0dddaf4efd9de1a3667bf3834
6 years, 2 months ago (2014-09-24 20:13:20 UTC) #41
commit-bot: I haz the power
Patchset 8 (id:??) landed as https://crrev.com/351c0f63466ac66eb03faaa85b27b98ae9c2b43c Cr-Commit-Position: refs/heads/master@{#296500}
6 years, 2 months ago (2014-09-24 20:13:55 UTC) #42
achuithb
6 years, 2 months ago (2014-09-24 23:39:11 UTC) #43
Message was sent while issue was closed.
On 2014/09/24 20:13:55, I haz the power (commit-bot) wrote:
> Patchset 8 (id:??) landed as
> https://crrev.com/351c0f63466ac66eb03faaa85b27b98ae9c2b43c
> Cr-Commit-Position: refs/heads/master@{#296500}

Looks like this one should stick:
http://build.chromium.org/p/chromiumos.chromium/builders/X86%20%28chromium%29...

Powered by Google App Engine
This is Rietveld 408576698