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

Issue 14765003: Gets the initial sync service status. In the next patch I'll make the syncfs-internals dashboard a … (Closed)

Created:
7 years, 7 months ago by calvinlo
Modified:
7 years, 7 months ago
CC:
chromium-reviews, arv+watch_chromium.org
Visibility:
Public.

Description

Gets the initial sync service status. In the next patch I'll make the syncfs-internals dashboard a sync_event_observer so it can also report changes in real time (as they come by notification). BUG=226353 TEST=open chrome://syncfs-internals. Service status should be running if signed in. Should be authentication_required if not signed in and any SyncFS app is run (i.e. calls requestFileSystem at least once). Please not that the page has to be refreshed manually to get updated values for now. R=arv@chromium.org, kinuko@chromium.org, tzik@chromium.org Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=198867

Patch Set 1 : Initial patch for review #

Total comments: 4

Patch Set 2 : tzik review #1 #

Total comments: 8

Patch Set 3 : arv review #1 #

Unified diffs Side-by-side diffs Delta from patch set Stats (+153 lines, -61 lines) Patch
M chrome/browser/resources/sync_file_system_internals/main.css View 1 2 1 chunk +4 lines, -0 lines 0 comments Download
M chrome/browser/resources/sync_file_system_internals/main.html View 1 2 1 chunk +1 line, -4 lines 0 comments Download
A chrome/browser/resources/sync_file_system_internals/sync_service.html View 1 chunk +11 lines, -0 lines 0 comments Download
A chrome/browser/resources/sync_file_system_internals/sync_service.js View 1 2 1 chunk +43 lines, -0 lines 0 comments Download
M chrome/browser/resources/sync_file_system_internals_resources.grd View 1 chunk +1 line, -0 lines 0 comments Download
M chrome/browser/ui/webui/chrome_web_ui_controller_factory.cc View 1 chunk +1 line, -1 line 0 comments Download
A chrome/browser/ui/webui/sync_file_system_internals/sync_file_system_internals_handler.h View 1 chunk +32 lines, -0 lines 0 comments Download
A chrome/browser/ui/webui/sync_file_system_internals/sync_file_system_internals_handler.cc View 1 chunk +46 lines, -0 lines 0 comments Download
A + chrome/browser/ui/webui/sync_file_system_internals/sync_file_system_internals_ui.h View 2 chunks +3 lines, -3 lines 0 comments Download
A + chrome/browser/ui/webui/sync_file_system_internals/sync_file_system_internals_ui.cc View 3 chunks +7 lines, -1 line 0 comments Download
D chrome/browser/ui/webui/sync_file_system_internals_ui.h View 1 chunk +0 lines, -18 lines 0 comments Download
D chrome/browser/ui/webui/sync_file_system_internals_ui.cc View 1 chunk +0 lines, -32 lines 0 comments Download
M chrome/chrome_browser_ui.gypi View 1 2 1 chunk +4 lines, -2 lines 0 comments Download

Messages

Total messages: 9 (0 generated)
calvinlo
Kinuko san, can you please take a quick pass before I send for OWNERS review
7 years, 7 months ago (2013-05-02 11:22:13 UTC) #1
tzik
lgtm https://codereview.chromium.org/14765003/diff/5001/chrome/browser/resources/sync_file_system_internals/sync_service.js File chrome/browser/resources/sync_file_system_internals/sync_service.js (right): https://codereview.chromium.org/14765003/diff/5001/chrome/browser/resources/sync_file_system_internals/sync_service.js#newcode25 chrome/browser/resources/sync_file_system_internals/sync_service.js:25: $('service-status').innerHTML = status_string; Can be innerText instead? https://codereview.chromium.org/14765003/diff/5001/chrome/chrome_browser_ui.gypi ...
7 years, 7 months ago (2013-05-02 11:47:56 UTC) #2
calvinlo
https://codereview.chromium.org/14765003/diff/5001/chrome/browser/resources/sync_file_system_internals/sync_service.js File chrome/browser/resources/sync_file_system_internals/sync_service.js (right): https://codereview.chromium.org/14765003/diff/5001/chrome/browser/resources/sync_file_system_internals/sync_service.js#newcode25 chrome/browser/resources/sync_file_system_internals/sync_service.js:25: $('service-status').innerHTML = status_string; On 2013/05/02 11:47:56, tzik wrote: > ...
7 years, 7 months ago (2013-05-02 11:51:54 UTC) #3
kinuko
I'm not very familiar with webui code, but looks sane to me. The dependency to ...
7 years, 7 months ago (2013-05-02 11:58:41 UTC) #4
calvinlo
+thestig for chrome_browser_ui.gypi OWNERS review +arv for browser/resources/*, browser/ui/webui/* OWNERS review
7 years, 7 months ago (2013-05-02 12:00:25 UTC) #5
arv (Not doing code reviews)
https://codereview.chromium.org/14765003/diff/8002/chrome/browser/resources/sync_file_system_internals/main.html File chrome/browser/resources/sync_file_system_internals/main.html (right): https://codereview.chromium.org/14765003/diff/8002/chrome/browser/resources/sync_file_system_internals/main.html#newcode22 chrome/browser/resources/sync_file_system_internals/main.html:22: Does this really need an id? Can you just ...
7 years, 7 months ago (2013-05-02 19:45:06 UTC) #6
calvinlo
https://codereview.chromium.org/14765003/diff/8002/chrome/browser/resources/sync_file_system_internals/main.html File chrome/browser/resources/sync_file_system_internals/main.html (right): https://codereview.chromium.org/14765003/diff/8002/chrome/browser/resources/sync_file_system_internals/main.html#newcode22 chrome/browser/resources/sync_file_system_internals/main.html:22: On 2013/05/02 19:45:06, arv wrote: > Does this really ...
7 years, 7 months ago (2013-05-07 06:14:09 UTC) #7
arv (Not doing code reviews)
LGTM
7 years, 7 months ago (2013-05-07 21:42:33 UTC) #8
calvinlo
7 years, 7 months ago (2013-05-08 09:36:54 UTC) #9
Message was sent while issue was closed.
Committed patchset #3 manually as r198867 (presubmit successful).

Powered by Google App Engine
This is Rietveld 408576698