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

Issue 306473012: Plumb file system permission into WebviewGuest. (Closed)

Created:
6 years, 6 months ago by Xi Han
Modified:
6 years, 6 months ago
CC:
chromium-reviews, chromium-apps-reviews_chromium.org, markusheintz_, jar (doing other things), asvitkine+watch_chromium.org, extensions-reviews_chromium.org
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Visibility:
Public.

Description

Plumb file system permission into WebviewGuest. Two remaining issues: 1. It seems that WebviewGuest doesn't support SharedWorker yet, so this CL doesn't include the changes for SharedWorker. 2. To request file system access for operations like getFile(), removeFile() etc., I have to set "unlimitedstorage" permission in manifest.json, otherwise will get QuotaExceededError (request persistent storage without "unlimitedstorage" permission). Any idea? BUG=343382 Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=276251 Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=276584

Patch Set 1 : Initial patch. #

Total comments: 2

Patch Set 2 : Fix worker #

Total comments: 10

Patch Set 3 : Move permission requests to WebViewGuest. #

Total comments: 40

Patch Set 4 : Changes are made. #

Total comments: 16

Patch Set 5 : Changes are made. #

Total comments: 8

Patch Set 6 : A little clean up. #

Total comments: 2

Patch Set 7 : Small changes are made. #

Patch Set 8 : Add tests #

Total comments: 43

Patch Set 9 : Small changes are made. #

Total comments: 8

Patch Set 10 : submit #

Patch Set 11 : Update #

Patch Set 12 : Add "#if defined(ENABLE_EXTENSIONS)" #

Patch Set 13 : Updated again #

Total comments: 4

Patch Set 14 : Small changes are made. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+665 lines, -116 lines) Patch
M chrome/browser/apps/web_view_browsertest.cc View 1 2 3 4 5 6 7 8 9 1 chunk +37 lines, -0 lines 0 comments Download
M chrome/browser/guest_view/guest_view.h View 1 2 3 4 5 6 2 chunks +12 lines, -0 lines 0 comments Download
M chrome/browser/guest_view/web_view/web_view_constants.h View 1 2 3 4 5 6 7 8 9 1 chunk +1 line, -0 lines 0 comments Download
M chrome/browser/guest_view/web_view/web_view_constants.cc View 1 2 3 4 5 6 7 8 9 1 chunk +1 line, -0 lines 0 comments Download
M chrome/browser/guest_view/web_view/web_view_guest.h View 1 2 3 4 5 6 7 8 9 3 chunks +80 lines, -27 lines 0 comments Download
M chrome/browser/guest_view/web_view/web_view_guest.cc View 1 2 3 4 5 6 7 8 9 6 chunks +105 lines, -0 lines 0 comments Download
M chrome/browser/guest_view/web_view/web_view_permission_types.h View 1 2 3 4 1 chunk +2 lines, -0 lines 0 comments Download
M chrome/browser/renderer_host/chrome_render_message_filter.h View 1 2 3 4 5 6 7 8 9 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/renderer_host/chrome_render_message_filter.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 4 chunks +66 lines, -18 lines 0 comments Download
M chrome/common/extensions/api/webview_tag.json View 1 2 3 4 5 6 7 8 9 10 2 chunks +20 lines, -1 line 0 comments Download
M chrome/renderer/resources/extensions/web_view.js View 1 2 3 4 5 6 7 8 9 1 chunk +6 lines, -1 line 0 comments Download
A + chrome/test/data/extensions/platform_apps/web_view/filesystem/main/embedder.html View 1 2 3 4 5 6 7 8 0 chunks +-1 lines, --1 lines 0 comments Download
A + chrome/test/data/extensions/platform_apps/web_view/filesystem/main/embedder.js View 1 2 3 4 5 6 7 8 7 chunks +21 lines, -36 lines 0 comments Download
A chrome/test/data/extensions/platform_apps/web_view/filesystem/main/guest_main.html View 1 2 3 4 5 6 7 8 1 chunk +102 lines, -0 lines 0 comments Download
A chrome/test/data/extensions/platform_apps/web_view/filesystem/main/manifest.json View 1 2 3 4 5 6 7 1 chunk +22 lines, -0 lines 0 comments Download
A + chrome/test/data/extensions/platform_apps/web_view/filesystem/main/test.js View 1 2 3 4 5 6 7 8 0 chunks +-1 lines, --1 lines 0 comments Download
A + chrome/test/data/extensions/platform_apps/web_view/filesystem/worker/embedder.html View 1 2 3 4 5 6 7 8 0 chunks +-1 lines, --1 lines 0 comments Download
A + chrome/test/data/extensions/platform_apps/web_view/filesystem/worker/embedder.js View 1 2 3 4 5 6 7 8 7 chunks +21 lines, -36 lines 0 comments Download
A chrome/test/data/extensions/platform_apps/web_view/filesystem/worker/guest_worker.html View 1 2 3 4 5 6 7 8 1 chunk +95 lines, -0 lines 0 comments Download
A chrome/test/data/extensions/platform_apps/web_view/filesystem/worker/manifest.json View 1 2 3 4 5 6 7 1 chunk +22 lines, -0 lines 0 comments Download
A + chrome/test/data/extensions/platform_apps/web_view/filesystem/worker/test.js View 1 2 3 4 5 6 7 8 0 chunks +-1 lines, --1 lines 0 comments Download
A chrome/test/data/extensions/platform_apps/web_view/filesystem/worker/worker.js View 1 2 3 4 5 6 7 8 1 chunk +39 lines, -0 lines 0 comments Download
M tools/metrics/actions/actions.xml View 1 2 3 4 5 6 7 8 9 10 2 chunks +16 lines, -0 lines 0 comments Download

Messages

Total messages: 66 (0 generated)
Xi Han
6 years, 6 months ago (2014-05-28 21:16:26 UTC) #1
Fady Samuel
This looks reasonable to me so far. https://codereview.chromium.org/306473012/diff/20001/chrome/browser/content_settings/tab_specific_content_settings.cc File chrome/browser/content_settings/tab_specific_content_settings.cc (right): https://codereview.chromium.org/306473012/diff/20001/chrome/browser/content_settings/tab_specific_content_settings.cc#newcode291 chrome/browser/content_settings/tab_specific_content_settings.cc:291: SendMessage( This ...
6 years, 6 months ago (2014-05-29 19:04:26 UTC) #2
Fady Samuel
This looks reasonable to me so far. https://codereview.chromium.org/306473012/diff/20001/chrome/browser/content_settings/tab_specific_content_settings.cc File chrome/browser/content_settings/tab_specific_content_settings.cc (right): https://codereview.chromium.org/306473012/diff/20001/chrome/browser/content_settings/tab_specific_content_settings.cc#newcode291 chrome/browser/content_settings/tab_specific_content_settings.cc:291: SendMessage( This ...
6 years, 6 months ago (2014-05-29 19:04:26 UTC) #3
Xi Han
https://codereview.chromium.org/306473012/diff/20001/chrome/browser/content_settings/tab_specific_content_settings.cc File chrome/browser/content_settings/tab_specific_content_settings.cc (right): https://codereview.chromium.org/306473012/diff/20001/chrome/browser/content_settings/tab_specific_content_settings.cc#newcode291 chrome/browser/content_settings/tab_specific_content_settings.cc:291: SendMessage( On 2014/05/29 19:04:32, Fady Samuel wrote: > This ...
6 years, 6 months ago (2014-05-29 21:10:20 UTC) #4
Fady Samuel
Same cleanup suggestions. https://codereview.chromium.org/306473012/diff/60001/chrome/browser/chrome_content_browser_client.cc File chrome/browser/chrome_content_browser_client.cc (right): https://codereview.chromium.org/306473012/diff/60001/chrome/browser/chrome_content_browser_client.cc#newcode1851 chrome/browser/chrome_content_browser_client.cc:1851: base::Bind(&TabSpecificContentSettings::FileSystemAccessedSync, TabSpecificContentSettings::FileSystemAccessed https://codereview.chromium.org/306473012/diff/60001/chrome/browser/renderer_host/chrome_render_message_filter.cc File chrome/browser/renderer_host/chrome_render_message_filter.cc (left): ...
6 years, 6 months ago (2014-05-29 21:36:24 UTC) #5
Xi Han
https://codereview.chromium.org/306473012/diff/60001/chrome/browser/chrome_content_browser_client.cc File chrome/browser/chrome_content_browser_client.cc (right): https://codereview.chromium.org/306473012/diff/60001/chrome/browser/chrome_content_browser_client.cc#newcode1851 chrome/browser/chrome_content_browser_client.cc:1851: base::Bind(&TabSpecificContentSettings::FileSystemAccessedSync, On 2014/05/29 21:36:25, Fady Samuel wrote: > TabSpecificContentSettings::FileSystemAccessed ...
6 years, 6 months ago (2014-05-30 14:38:35 UTC) #6
fsamuel
https://codereview.chromium.org/306473012/diff/100001/chrome/browser/chrome_content_browser_client.cc File chrome/browser/chrome_content_browser_client.cc (left): https://codereview.chromium.org/306473012/diff/100001/chrome/browser/chrome_content_browser_client.cc#oldcode1851 chrome/browser/chrome_content_browser_client.cc:1851: i->first, i->second, url, !allow)); Revert this change. https://codereview.chromium.org/306473012/diff/100001/chrome/browser/content_settings/tab_specific_content_settings.cc File ...
6 years, 6 months ago (2014-05-30 15:13:21 UTC) #7
fsamuel
6 years, 6 months ago (2014-05-30 15:13:22 UTC) #8
Xi Han
https://codereview.chromium.org/306473012/diff/100001/chrome/browser/chrome_content_browser_client.cc File chrome/browser/chrome_content_browser_client.cc (left): https://codereview.chromium.org/306473012/diff/100001/chrome/browser/chrome_content_browser_client.cc#oldcode1851 chrome/browser/chrome_content_browser_client.cc:1851: i->first, i->second, url, !allow)); On 2014/05/30 15:13:21, fsamuel wrote: ...
6 years, 6 months ago (2014-05-30 18:15:56 UTC) #9
Fady Samuel
https://codereview.chromium.org/306473012/diff/120001/chrome/browser/guest_view/web_view/web_view_guest.cc File chrome/browser/guest_view/web_view/web_view_guest.cc (left): https://codereview.chromium.org/306473012/diff/120001/chrome/browser/guest_view/web_view/web_view_guest.cc#oldcode72 chrome/browser/guest_view/web_view/web_view_guest.cc:72: using content::RenderFrameHost; Put this back. https://codereview.chromium.org/306473012/diff/120001/chrome/browser/guest_view/web_view/web_view_guest.cc File chrome/browser/guest_view/web_view/web_view_guest.cc (right): ...
6 years, 6 months ago (2014-05-30 18:26:12 UTC) #10
Fady Samuel
6 years, 6 months ago (2014-05-30 18:26:16 UTC) #11
Xi Han
https://codereview.chromium.org/306473012/diff/120001/chrome/browser/guest_view/web_view/web_view_guest.cc File chrome/browser/guest_view/web_view/web_view_guest.cc (left): https://codereview.chromium.org/306473012/diff/120001/chrome/browser/guest_view/web_view/web_view_guest.cc#oldcode72 chrome/browser/guest_view/web_view/web_view_guest.cc:72: using content::RenderFrameHost; On 2014/05/30 18:26:13, Fady Samuel wrote: > ...
6 years, 6 months ago (2014-05-30 19:35:29 UTC) #12
fsamuel
lgtm with nits https://codereview.chromium.org/306473012/diff/160001/chrome/browser/guest_view/guest_view.h File chrome/browser/guest_view/guest_view.h (right): https://codereview.chromium.org/306473012/diff/160001/chrome/browser/guest_view/guest_view.h#newcode27 chrome/browser/guest_view/guest_view.h:27: static T* FromFrame(int render_process_id, int render_frame_id) ...
6 years, 6 months ago (2014-05-30 19:46:51 UTC) #13
Xi Han
https://codereview.chromium.org/306473012/diff/160001/chrome/browser/guest_view/guest_view.h File chrome/browser/guest_view/guest_view.h (right): https://codereview.chromium.org/306473012/diff/160001/chrome/browser/guest_view/guest_view.h#newcode27 chrome/browser/guest_view/guest_view.h:27: static T* FromFrame(int render_process_id, int render_frame_id) { On 2014/05/30 ...
6 years, 6 months ago (2014-05-30 20:27:45 UTC) #14
jochen (gone - plz use gerrit)
what bits do you want me to look at?
6 years, 6 months ago (2014-06-02 07:14:07 UTC) #15
Xi Han
On 2014/06/02 07:14:07, jochen wrote: > what bits do you want me to look at? ...
6 years, 6 months ago (2014-06-02 12:51:18 UTC) #16
jochen (gone - plz use gerrit)
the webview stuff should be covered by Fady? I don't really know about the plumbing ...
6 years, 6 months ago (2014-06-02 13:20:22 UTC) #17
Xi Han
Alexei: would you please review file: tools/metrics/actions/actions.xml? Thanks a lot.
6 years, 6 months ago (2014-06-03 13:29:54 UTC) #18
Alexei Svitkine (slow)
https://codereview.chromium.org/306473012/diff/180001/tools/metrics/actions/actions.xml File tools/metrics/actions/actions.xml (right): https://codereview.chromium.org/306473012/diff/180001/tools/metrics/actions/actions.xml#newcode10839 tools/metrics/actions/actions.xml:10839: <owner>Please list the metric's owners. Add more owner tags ...
6 years, 6 months ago (2014-06-03 14:18:35 UTC) #19
Xi Han
Alexei: I updated my CL, please take another look. Thanks! https://codereview.chromium.org/306473012/diff/180001/tools/metrics/actions/actions.xml File tools/metrics/actions/actions.xml (right): https://codereview.chromium.org/306473012/diff/180001/tools/metrics/actions/actions.xml#newcode10839 ...
6 years, 6 months ago (2014-06-03 15:25:50 UTC) #20
Alexei Svitkine (slow)
lgtm
6 years, 6 months ago (2014-06-03 15:35:06 UTC) #21
Xi Han
The test for DefaultDeny isn't included in this CL. I submit changes for other tests ...
6 years, 6 months ago (2014-06-03 19:54:52 UTC) #22
Fady Samuel
Some additional comments. https://codereview.chromium.org/306473012/diff/270001/chrome/browser/renderer_host/chrome_render_message_filter.cc File chrome/browser/renderer_host/chrome_render_message_filter.cc (right): https://codereview.chromium.org/306473012/diff/270001/chrome/browser/renderer_host/chrome_render_message_filter.cc#newcode494 chrome/browser/renderer_host/chrome_render_message_filter.cc:494: !allowed)); Make reply_msg the last parameter ...
6 years, 6 months ago (2014-06-03 20:46:54 UTC) #23
Xi Han
https://codereview.chromium.org/306473012/diff/270001/chrome/browser/renderer_host/chrome_render_message_filter.cc File chrome/browser/renderer_host/chrome_render_message_filter.cc (right): https://codereview.chromium.org/306473012/diff/270001/chrome/browser/renderer_host/chrome_render_message_filter.cc#newcode494 chrome/browser/renderer_host/chrome_render_message_filter.cc:494: !allowed)); On 2014/06/03 20:46:52, Fady Samuel wrote: > Make ...
6 years, 6 months ago (2014-06-04 19:08:20 UTC) #24
Xi Han
Benjamin: would you please review the following file: -chrome/browser/apps/web_view_browsertest.cc Thanks a lot!
6 years, 6 months ago (2014-06-05 13:08:49 UTC) #25
not at google - send to devlin
https://codereview.chromium.org/306473012/diff/330001/chrome/renderer/resources/extensions/web_view.js File chrome/renderer/resources/extensions/web_view.js (right): https://codereview.chromium.org/306473012/diff/330001/chrome/renderer/resources/extensions/web_view.js#newcode695 chrome/renderer/resources/extensions/web_view.js:695: 'filesystem']; what does it mean for a webview to ...
6 years, 6 months ago (2014-06-05 16:57:03 UTC) #26
Xi Han
https://codereview.chromium.org/306473012/diff/330001/chrome/renderer/resources/extensions/web_view.js File chrome/renderer/resources/extensions/web_view.js (right): https://codereview.chromium.org/306473012/diff/330001/chrome/renderer/resources/extensions/web_view.js#newcode695 chrome/renderer/resources/extensions/web_view.js:695: 'filesystem']; On 2014/06/05 16:57:04, kalman wrote: > what does ...
6 years, 6 months ago (2014-06-05 17:00:00 UTC) #27
not at google - send to devlin
https://codereview.chromium.org/306473012/diff/330001/chrome/renderer/resources/extensions/web_view.js File chrome/renderer/resources/extensions/web_view.js (right): https://codereview.chromium.org/306473012/diff/330001/chrome/renderer/resources/extensions/web_view.js#newcode695 chrome/renderer/resources/extensions/web_view.js:695: 'filesystem']; On 2014/06/05 16:59:59, hanxi wrote: > On 2014/06/05 ...
6 years, 6 months ago (2014-06-05 17:03:17 UTC) #28
Xi Han
https://codereview.chromium.org/306473012/diff/330001/chrome/renderer/resources/extensions/web_view.js File chrome/renderer/resources/extensions/web_view.js (right): https://codereview.chromium.org/306473012/diff/330001/chrome/renderer/resources/extensions/web_view.js#newcode695 chrome/renderer/resources/extensions/web_view.js:695: 'filesystem']; On 2014/06/05 17:03:17, kalman wrote: > On 2014/06/05 ...
6 years, 6 months ago (2014-06-05 17:09:37 UTC) #29
not at google - send to devlin
https://codereview.chromium.org/306473012/diff/330001/chrome/renderer/resources/extensions/web_view.js File chrome/renderer/resources/extensions/web_view.js (right): https://codereview.chromium.org/306473012/diff/330001/chrome/renderer/resources/extensions/web_view.js#newcode695 chrome/renderer/resources/extensions/web_view.js:695: 'filesystem']; On 2014/06/05 17:09:37, hanxi wrote: > On 2014/06/05 ...
6 years, 6 months ago (2014-06-05 17:12:50 UTC) #30
Xi Han
https://codereview.chromium.org/306473012/diff/330001/chrome/renderer/resources/extensions/web_view.js File chrome/renderer/resources/extensions/web_view.js (right): https://codereview.chromium.org/306473012/diff/330001/chrome/renderer/resources/extensions/web_view.js#newcode695 chrome/renderer/resources/extensions/web_view.js:695: 'filesystem']; On 2014/06/05 17:12:50, kalman wrote: > On 2014/06/05 ...
6 years, 6 months ago (2014-06-05 17:24:00 UTC) #31
not at google - send to devlin
^ fady? https://codereview.chromium.org/306473012/diff/330001/chrome/renderer/resources/extensions/web_view.js File chrome/renderer/resources/extensions/web_view.js (right): https://codereview.chromium.org/306473012/diff/330001/chrome/renderer/resources/extensions/web_view.js#newcode695 chrome/renderer/resources/extensions/web_view.js:695: 'filesystem']; > > Honestly, I don't know ...
6 years, 6 months ago (2014-06-05 17:30:39 UTC) #32
Xi Han
https://codereview.chromium.org/306473012/diff/330001/chrome/renderer/resources/extensions/web_view.js File chrome/renderer/resources/extensions/web_view.js (right): https://codereview.chromium.org/306473012/diff/330001/chrome/renderer/resources/extensions/web_view.js#newcode695 chrome/renderer/resources/extensions/web_view.js:695: 'filesystem']; On 2014/06/05 17:30:39, kalman wrote: > > > ...
6 years, 6 months ago (2014-06-05 17:45:07 UTC) #33
Fady Samuel
On 2014/06/05 17:45:07, hanxi wrote: > https://codereview.chromium.org/306473012/diff/330001/chrome/renderer/resources/extensions/web_view.js > File chrome/renderer/resources/extensions/web_view.js (right): > > https://codereview.chromium.org/306473012/diff/330001/chrome/renderer/resources/extensions/web_view.js#newcode695 > ...
6 years, 6 months ago (2014-06-09 14:44:48 UTC) #34
not at google - send to devlin
lgtm
6 years, 6 months ago (2014-06-09 21:30:54 UTC) #35
Xi Han
The CQ bit was checked by hanxi@chromium.org
6 years, 6 months ago (2014-06-09 21:36:18 UTC) #36
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/hanxi@chromium.org/306473012/330001
6 years, 6 months ago (2014-06-09 21:38:47 UTC) #37
commit-bot: I haz the power
FYI, CQ is re-trying this CL (attempt #1). The failing builders are: android_clang_dbg on tryserver.chromium ...
6 years, 6 months ago (2014-06-10 09:46:47 UTC) #38
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 6 months ago (2014-06-10 11:20:42 UTC) #39
commit-bot: I haz the power
Try jobs failed on following builders: linux_chromium_clang_dbg on tryserver.chromium (http://build.chromium.org/p/tryserver.chromium/builders/linux_chromium_clang_dbg/builds/32740) linux_chromium_gn_rel on tryserver.chromium (http://build.chromium.org/p/tryserver.chromium/builders/linux_chromium_gn_rel/builds/14956) linux_chromium_rel ...
6 years, 6 months ago (2014-06-10 11:20:43 UTC) #40
Xi Han
The CQ bit was checked by hanxi@chromium.org
6 years, 6 months ago (2014-06-10 13:11:25 UTC) #41
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/hanxi@chromium.org/306473012/350001
6 years, 6 months ago (2014-06-10 13:13:11 UTC) #42
commit-bot: I haz the power
FYI, CQ is re-trying this CL (attempt #1). The failing builders are: android_clang_dbg on tryserver.chromium ...
6 years, 6 months ago (2014-06-10 21:29:04 UTC) #43
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 6 months ago (2014-06-10 22:20:11 UTC) #44
commit-bot: I haz the power
Try jobs failed on following builders: android_clang_dbg on tryserver.chromium (http://build.chromium.org/p/tryserver.chromium/builders/android_clang_dbg/builds/150636)
6 years, 6 months ago (2014-06-10 22:20:12 UTC) #45
Xi Han
The CQ bit was checked by hanxi@chromium.org
6 years, 6 months ago (2014-06-11 03:26:19 UTC) #46
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/hanxi@chromium.org/306473012/350001
6 years, 6 months ago (2014-06-11 03:29:44 UTC) #47
commit-bot: I haz the power
Change committed as 276251
6 years, 6 months ago (2014-06-11 04:26:58 UTC) #48
Xi Han
Please take another look at. Thanks.
6 years, 6 months ago (2014-06-11 15:10:44 UTC) #49
Xi Han
6 years, 6 months ago (2014-06-11 15:36:43 UTC) #50
fsamuel
lgtm with two nits. https://codereview.chromium.org/306473012/diff/410001/chrome/browser/renderer_host/chrome_render_message_filter.cc File chrome/browser/renderer_host/chrome_render_message_filter.cc (left): https://codereview.chromium.org/306473012/diff/410001/chrome/browser/renderer_host/chrome_render_message_filter.cc#oldcode198 chrome/browser/renderer_host/chrome_render_message_filter.cc:198: // Record access to file ...
6 years, 6 months ago (2014-06-11 15:38:37 UTC) #51
Xi Han
https://codereview.chromium.org/306473012/diff/410001/chrome/browser/renderer_host/chrome_render_message_filter.cc File chrome/browser/renderer_host/chrome_render_message_filter.cc (left): https://codereview.chromium.org/306473012/diff/410001/chrome/browser/renderer_host/chrome_render_message_filter.cc#oldcode198 chrome/browser/renderer_host/chrome_render_message_filter.cc:198: // Record access to file system for potential display ...
6 years, 6 months ago (2014-06-11 15:46:32 UTC) #52
fsamuel
lgtm
6 years, 6 months ago (2014-06-11 15:48:01 UTC) #53
Xi Han
The CQ bit was checked by hanxi@chromium.org
6 years, 6 months ago (2014-06-11 15:48:36 UTC) #54
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/hanxi@chromium.org/306473012/430001
6 years, 6 months ago (2014-06-11 15:51:31 UTC) #55
commit-bot: I haz the power
FYI, CQ is re-trying this CL (attempt #1). The failing builders are: win_chromium_x64_rel on tryserver.chromium ...
6 years, 6 months ago (2014-06-11 21:14:14 UTC) #56
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 6 months ago (2014-06-11 21:28:16 UTC) #57
commit-bot: I haz the power
Try jobs failed on following builders: win_chromium_x64_rel on tryserver.chromium (http://build.chromium.org/p/tryserver.chromium/builders/win_chromium_x64_rel/builds/19614)
6 years, 6 months ago (2014-06-11 21:28:18 UTC) #58
Xi Han
The CQ bit was checked by hanxi@chromium.org
6 years, 6 months ago (2014-06-11 21:48:07 UTC) #59
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/hanxi@chromium.org/306473012/430001
6 years, 6 months ago (2014-06-11 21:50:23 UTC) #60
commit-bot: I haz the power
FYI, CQ is re-trying this CL (attempt #1). The failing builders are: win_chromium_x64_rel on tryserver.chromium ...
6 years, 6 months ago (2014-06-11 22:22:36 UTC) #61
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 6 months ago (2014-06-11 22:27:09 UTC) #62
commit-bot: I haz the power
Try jobs failed on following builders: win_chromium_x64_rel on tryserver.chromium (http://build.chromium.org/p/tryserver.chromium/builders/win_chromium_x64_rel/builds/19757)
6 years, 6 months ago (2014-06-11 22:27:10 UTC) #63
Xi Han
The CQ bit was checked by hanxi@chromium.org
6 years, 6 months ago (2014-06-12 03:06:12 UTC) #64
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/hanxi@chromium.org/306473012/430001
6 years, 6 months ago (2014-06-12 03:07:39 UTC) #65
commit-bot: I haz the power
6 years, 6 months ago (2014-06-12 08:28:08 UTC) #66
Message was sent while issue was closed.
Change committed as 276584

Powered by Google App Engine
This is Rietveld 408576698