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

Issue 13836002: Fix navigation of chrome://oobe/login. (Closed)

Created:
7 years, 8 months ago by achuithb
Modified:
7 years, 8 months ago
Reviewers:
dtu, nduca
CC:
chromium-reviews, chrome-speed-team+watch_google.com, Aaron Boodman, telemetry+watch_chromium.org, chromium-apps-reviews_chromium.org
Visibility:
Public.

Description

Fix navigation of chrome://oobe/login. * Introduce MiscWebContentsBackend for chrome://oobe/login. * Fix navigation of chrome://oobe/login by using misc_web_contents_backend instead of tab_list_backend. BUG=228970 TEST=unit tests. Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=194992

Patch Set 1 #

Patch Set 2 : #

Total comments: 4

Patch Set 3 : #

Patch Set 4 : dtu feedback #

Patch Set 5 : cleanup #

Patch Set 6 : cleanup #

Patch Set 7 : simplify #

Patch Set 8 : #

Patch Set 9 : simplify #

Patch Set 10 : #

Patch Set 11 : #

Patch Set 12 : #

Total comments: 10

Patch Set 13 : nduca feedback #

Patch Set 14 : minor #

Patch Set 15 : device fix #

Total comments: 2

Patch Set 16 : nduca feedback #

Patch Set 17 : rebase #

Unified diffs Side-by-side diffs Delta from patch set Stats (+69 lines, -10 lines) Patch
M tools/telemetry/telemetry/core/chrome/browser_backend.py View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 3 chunks +11 lines, -2 lines 0 comments Download
M tools/telemetry/telemetry/core/chrome/cros_util.py View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 2 chunks +12 lines, -8 lines 0 comments Download
A tools/telemetry/telemetry/core/chrome/misc_web_contents_backend.py View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +46 lines, -0 lines 0 comments Download

Messages

Total messages: 24 (0 generated)
achuithb
Please take a look, Dave and Nat. Most of it is just refactoring common code ...
7 years, 8 months ago (2013-04-09 00:14:05 UTC) #1
dtu
https://codereview.chromium.org/13836002/diff/2001/tools/telemetry/telemetry/core/chrome/web_contents_backend.py File tools/telemetry/telemetry/core/chrome/web_contents_backend.py (right): https://codereview.chromium.org/13836002/diff/2001/tools/telemetry/telemetry/core/chrome/web_contents_backend.py#newcode14 tools/telemetry/telemetry/core/chrome/web_contents_backend.py:14: class WebContentsBackend(object): It's not the backend for WebContents in ...
7 years, 8 months ago (2013-04-09 22:41:54 UTC) #2
achuithb
https://codereview.chromium.org/13836002/diff/2001/tools/telemetry/telemetry/core/chrome/web_contents_backend.py File tools/telemetry/telemetry/core/chrome/web_contents_backend.py (right): https://codereview.chromium.org/13836002/diff/2001/tools/telemetry/telemetry/core/chrome/web_contents_backend.py#newcode14 tools/telemetry/telemetry/core/chrome/web_contents_backend.py:14: class WebContentsBackend(object): On 2013/04/09 22:41:54, Dave Tu wrote: > ...
7 years, 8 months ago (2013-04-09 22:50:12 UTC) #3
achuithb
Any luck with this CL?
7 years, 8 months ago (2013-04-10 18:58:10 UTC) #4
dtu
Sorry, I forgot to publish one of my comments. One particular reason is that the ...
7 years, 8 months ago (2013-04-10 22:42:46 UTC) #5
dtu
If it has dict semantics, you can do that Get() check for chrome://oobe using a ...
7 years, 8 months ago (2013-04-10 22:43:52 UTC) #6
nduca
This feels a bit complicated to me. Whats the "value" of the common code we're ...
7 years, 8 months ago (2013-04-11 16:52:17 UTC) #7
achuithb
On 2013/04/11 16:52:17, nduca wrote: > This feels a bit complicated to me. Whats the ...
7 years, 8 months ago (2013-04-11 18:45:30 UTC) #8
nduca
How about making TabListBackend have a secondary list of privateTabs? Then, since cros browser backend ...
7 years, 8 months ago (2013-04-11 18:48:29 UTC) #9
achuithb
On 2013/04/11 18:48:29, nduca wrote: > How about making TabListBackend have a secondary list of ...
7 years, 8 months ago (2013-04-11 18:53:25 UTC) #10
nduca
Complexity.
7 years, 8 months ago (2013-04-11 18:58:48 UTC) #11
achuithb
On 2013/04/11 18:58:48, nduca wrote: > Complexity. Dave: Can you weigh in? I prefer the ...
7 years, 8 months ago (2013-04-11 19:13:25 UTC) #12
dtu
On 2013/04/11 19:13:25, achuith.bhandarkar wrote: > On 2013/04/11 18:58:48, nduca wrote: > > Complexity. > ...
7 years, 8 months ago (2013-04-11 20:25:22 UTC) #13
achuithb
On 2013/04/11 20:25:22, Dave Tu wrote: > On 2013/04/11 19:13:25, achuith.bhandarkar wrote: > > On ...
7 years, 8 months ago (2013-04-11 20:35:13 UTC) #14
achuithb
I've done another round of re-factoring, which I believe clarifies the separation of responsibilities between ...
7 years, 8 months ago (2013-04-11 23:35:40 UTC) #15
nduca
This is still super hard to grok. Can we just try special casing oobe somehow?
7 years, 8 months ago (2013-04-12 18:51:17 UTC) #16
achuithb
On 2013/04/12 18:51:17, nduca wrote: > This is still super hard to grok. > > ...
7 years, 8 months ago (2013-04-15 22:40:57 UTC) #17
nduca
https://codereview.chromium.org/13836002/diff/36007/tools/telemetry/telemetry/core/chrome/browser_backend.py File tools/telemetry/telemetry/core/chrome/browser_backend.py (right): https://codereview.chromium.org/13836002/diff/36007/tools/telemetry/telemetry/core/chrome/browser_backend.py#newcode55 tools/telemetry/telemetry/core/chrome/browser_backend.py:55: self._web_contents_dict_backend = ( How about misc_web_contents_dict and drop the ...
7 years, 8 months ago (2013-04-16 19:42:38 UTC) #18
achuithb
PTAL Nat and Dave. https://codereview.chromium.org/13836002/diff/36007/tools/telemetry/telemetry/core/chrome/browser_backend.py File tools/telemetry/telemetry/core/chrome/browser_backend.py (right): https://codereview.chromium.org/13836002/diff/36007/tools/telemetry/telemetry/core/chrome/browser_backend.py#newcode55 tools/telemetry/telemetry/core/chrome/browser_backend.py:55: self._web_contents_dict_backend = ( On 2013/04/16 ...
7 years, 8 months ago (2013-04-17 22:54:27 UTC) #19
dtu
I'm okay with this. lgtm. Nat?
7 years, 8 months ago (2013-04-18 02:36:09 UTC) #20
nduca
lgtm but just remove the websocket stuff. do that as another patch. dont slip stuff ...
7 years, 8 months ago (2013-04-18 17:08:02 UTC) #21
achuithb
Reverted the web_socket change. It'll go into another patch. Thanks for the reviews! https://codereview.chromium.org/13836002/diff/26002/tools/telemetry/telemetry/core/chrome/cros_util.py File ...
7 years, 8 months ago (2013-04-18 19:01:25 UTC) #22
nduca
ship it. :) lgtm
7 years, 8 months ago (2013-04-18 19:35:35 UTC) #23
achuithb
7 years, 8 months ago (2013-04-18 20:20:56 UTC) #24
Message was sent while issue was closed.
Committed patchset #17 manually as r194992 (presubmit successful).

Powered by Google App Engine
This is Rietveld 408576698