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

Issue 194693002: [fsp] Add requestUnmount() method together with the request manager. (Closed)

Created:
6 years, 9 months ago by mtomasz
Modified:
6 years, 8 months ago
CC:
chromium-reviews, extensions-reviews_chromium.org, nkostylev+watch_chromium.org, yoshiki+watch_chromium.org, asvitkine+watch_chromium.org, rginda+watch_chromium.org, oshima+watch_chromium.org, chromium-apps-reviews_chromium.org, stevenjb+watch_chromium.org, davemoore+watch_chromium.org, jar (doing other things), kinuko+watch
Visibility:
Public.

Description

[fsp] Add requestUnmount() method together with the request manager. This patch introduces a requestUnmount() method, which is invoked by Files app's private api, and then emits an onUnmountRequested event. When the providing extension receives it, it should handle unmounting, and call the success or failure callback. Unmounting is the first implemented request in the file system provider implementation. Other requests will be: listing directories, fetching files, etc. These requests are invoked by Files app and are routed to the providing extension, then the response goes back to Files app. To make the code clean, a RequestManager class has been introduced. It acts as a glue between requests as responses. TEST=unit_tests: *FileSystemProviderServiceTest.Unmount*, *FileSystemProviderRequestManagerTest*; browser_tests: *FileSystemProviderApiTest.Unmount* BUG=248427 Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=262840

Patch Set 1 #

Patch Set 2 : Lots of fixes. #

Patch Set 3 : Rebased. #

Patch Set 4 : Rebased. #

Patch Set 5 : Rebased. #

Total comments: 21

Patch Set 6 : Addressed comments. #

Total comments: 14

Patch Set 7 : Addressed comments. #

Total comments: 6

Patch Set 8 : Addressed comments + rebased. #

Total comments: 9

Patch Set 9 : Cleaned up IDL. #

Total comments: 4

Patch Set 10 : Fixed permissions. #

Patch Set 11 : Rebased. #

Patch Set 12 : Rebased. #

Patch Set 13 : Addressed clang's complains. #

Patch Set 14 : Rebased. #

Patch Set 15 : Rebased again. #

Patch Set 16 : Rebased again. #

Patch Set 17 : Rebased. #

Patch Set 18 : Fixed XML. #

Patch Set 19 : Removed some too strict thread checks. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+1351 lines, -122 lines) Patch
M chrome/browser/chromeos/extensions/file_manager/private_api_mount.h View 2 chunks +2 lines, -2 lines 0 comments Download
M chrome/browser/chromeos/extensions/file_manager/private_api_mount.cc View 1 2 3 4 5 3 chunks +25 lines, -6 lines 0 comments Download
M chrome/browser/chromeos/extensions/file_manager/private_api_util.cc View 1 2 3 4 5 6 7 8 9 10 1 chunk +0 lines, -1 line 0 comments Download
M chrome/browser/chromeos/extensions/file_system_provider/file_system_provider_api.h View 1 1 chunk +33 lines, -0 lines 0 comments Download
M chrome/browser/chromeos/extensions/file_system_provider/file_system_provider_api.cc View 1 2 3 4 5 6 6 chunks +140 lines, -6 lines 0 comments Download
M chrome/browser/chromeos/extensions/file_system_provider/file_system_provider_apitest.cc View 1 6 1 chunk +6 lines, -0 lines 0 comments Download
M chrome/browser/chromeos/file_manager/volume_manager.h View 1 2 3 4 5 6 7 8 9 10 3 chunks +11 lines, -6 lines 0 comments Download
M chrome/browser/chromeos/file_manager/volume_manager.cc View 1 2 3 4 5 6 7 8 9 10 3 chunks +28 lines, -11 lines 0 comments Download
M chrome/browser/chromeos/file_system_provider/observer.h View 1 2 3 4 5 6 2 chunks +14 lines, -7 lines 0 comments Download
A chrome/browser/chromeos/file_system_provider/request_manager.h View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +88 lines, -0 lines 0 comments Download
A chrome/browser/chromeos/file_system_provider/request_manager.cc View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +110 lines, -0 lines 0 comments Download
A chrome/browser/chromeos/file_system_provider/request_manager_unittest.cc View 1 2 3 4 5 6 1 chunk +348 lines, -0 lines 0 comments Download
M chrome/browser/chromeos/file_system_provider/service.h View 1 2 3 4 3 chunks +44 lines, -9 lines 0 comments Download
M chrome/browser/chromeos/file_system_provider/service.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 7 chunks +128 lines, -14 lines 0 comments Download
M chrome/browser/chromeos/file_system_provider/service_unittest.cc View 1 2 3 4 5 6 3 chunks +84 lines, -54 lines 0 comments Download
M chrome/chrome_browser_chromeos.gypi View 1 2 3 4 5 6 7 8 9 10 1 chunk +2 lines, -0 lines 0 comments Download
M chrome/chrome_tests_unit.gypi View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +1 line, -0 lines 0 comments Download
M chrome/common/extensions/api/_api_features.json View 1 2 3 4 5 6 7 8 9 10 1 chunk +5 lines, -0 lines 0 comments Download
M chrome/common/extensions/api/api.gyp View 1 2 3 4 5 6 7 8 9 10 1 chunk +1 line, -0 lines 0 comments Download
M chrome/common/extensions/api/file_system_provider.idl View 1 2 3 4 5 6 7 8 3 chunks +58 lines, -1 line 0 comments Download
A chrome/common/extensions/api/file_system_provider_internal.idl View 1 2 3 4 5 6 7 8 1 chunk +26 lines, -0 lines 0 comments Download
M chrome/renderer/resources/extensions/file_system_provider_custom_bindings.js View 1 2 chunks +51 lines, -0 lines 0 comments Download
M chrome/test/data/extensions/api_test/file_system_provider/mount/test.js View 1 2 3 4 5 6 7 4 chunks +9 lines, -3 lines 0 comments Download
A + chrome/test/data/extensions/api_test/file_system_provider/unmount/manifest.json View 1 1 chunk +2 lines, -2 lines 0 comments Download
A chrome/test/data/extensions/api_test/file_system_provider/unmount/test.js View 1 2 3 4 5 6 7 1 chunk +123 lines, -0 lines 0 comments Download
M extensions/browser/extension_function_histogram_value.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 15 1 chunk +3 lines, -0 lines 0 comments Download
M tools/metrics/histograms/histograms.xml View 1 chunk +9 lines, -0 lines 0 comments Download

Messages

Total messages: 71 (0 generated)
mtomasz
This CL depends on 192573002.
6 years, 9 months ago (2014-03-11 10:13:40 UTC) #1
mtomasz
On 2014/03/11 10:13:40, mtomasz wrote: > This CL depends on 192573002. @kinaba, @satorux: PTAL. This ...
6 years, 9 months ago (2014-03-13 03:59:49 UTC) #2
mtomasz
On 2014/03/13 03:59:49, mtomasz OOO until 21.03 wrote: > On 2014/03/11 10:13:40, mtomasz wrote: > ...
6 years, 9 months ago (2014-03-24 07:27:36 UTC) #3
kinaba
On 2014/03/24 07:27:36, mtomasz OOO until 21.03 wrote: > On 2014/03/13 03:59:49, mtomasz OOO until ...
6 years, 9 months ago (2014-03-24 08:36:12 UTC) #4
hashimoto
Didn't do serious review, but noticed one nit. https://codereview.chromium.org/194693002/diff/80001/chrome/browser/chromeos/file_system_provider/service_unittest.cc File chrome/browser/chromeos/file_system_provider/service_unittest.cc (right): https://codereview.chromium.org/194693002/diff/80001/chrome/browser/chromeos/file_system_provider/service_unittest.cc#newcode16 chrome/browser/chromeos/file_system_provider/service_unittest.cc:16: #include ...
6 years, 9 months ago (2014-03-25 10:38:56 UTC) #5
hashimoto
some more nits https://codereview.chromium.org/194693002/diff/80001/chrome/browser/chromeos/file_system_provider/request_manager_unittest.cc File chrome/browser/chromeos/file_system_provider/request_manager_unittest.cc (right): https://codereview.chromium.org/194693002/diff/80001/chrome/browser/chromeos/file_system_provider/request_manager_unittest.cc#newcode21 chrome/browser/chromeos/file_system_provider/request_manager_unittest.cc:21: static const std::string kExtensionId = "mbflcebpggnecokmikipoihdbecnjfoj"; ...
6 years, 9 months ago (2014-03-25 10:57:47 UTC) #6
kinaba
Sorry for my belated response. lgtm with nits https://codereview.chromium.org/194693002/diff/80001/chrome/browser/chromeos/file_system_provider/request_manager_unittest.cc File chrome/browser/chromeos/file_system_provider/request_manager_unittest.cc (right): https://codereview.chromium.org/194693002/diff/80001/chrome/browser/chromeos/file_system_provider/request_manager_unittest.cc#newcode21 chrome/browser/chromeos/file_system_provider/request_manager_unittest.cc:21: static ...
6 years, 9 months ago (2014-03-25 11:14:51 UTC) #7
mtomasz
Thanks for comments. PTAL. https://codereview.chromium.org/194693002/diff/80001/chrome/browser/chromeos/file_system_provider/request_manager_unittest.cc File chrome/browser/chromeos/file_system_provider/request_manager_unittest.cc (right): https://codereview.chromium.org/194693002/diff/80001/chrome/browser/chromeos/file_system_provider/request_manager_unittest.cc#newcode21 chrome/browser/chromeos/file_system_provider/request_manager_unittest.cc:21: static const std::string kExtensionId = ...
6 years, 9 months ago (2014-03-26 00:52:34 UTC) #8
hashimoto
lgtm https://codereview.chromium.org/194693002/diff/80001/chrome/browser/chromeos/file_system_provider/request_manager_unittest.cc File chrome/browser/chromeos/file_system_provider/request_manager_unittest.cc (right): https://codereview.chromium.org/194693002/diff/80001/chrome/browser/chromeos/file_system_provider/request_manager_unittest.cc#newcode21 chrome/browser/chromeos/file_system_provider/request_manager_unittest.cc:21: static const std::string kExtensionId = "mbflcebpggnecokmikipoihdbecnjfoj"; On 2014/03/25 ...
6 years, 9 months ago (2014-03-26 01:07:56 UTC) #9
satorux1
https://codereview.chromium.org/194693002/diff/100001/chrome/browser/chromeos/file_manager/volume_manager.cc File chrome/browser/chromeos/file_manager/volume_manager.cc (right): https://codereview.chromium.org/194693002/diff/100001/chrome/browser/chromeos/file_manager/volume_manager.cc#newcode220 chrome/browser/chromeos/file_manager/volume_manager.cc:220: VolumeInfo::VolumeInfo() { I think we should initialize file_system_id and ...
6 years, 9 months ago (2014-03-26 08:15:02 UTC) #10
mtomasz
https://codereview.chromium.org/194693002/diff/100001/chrome/browser/chromeos/file_manager/volume_manager.cc File chrome/browser/chromeos/file_manager/volume_manager.cc (right): https://codereview.chromium.org/194693002/diff/100001/chrome/browser/chromeos/file_manager/volume_manager.cc#newcode220 chrome/browser/chromeos/file_manager/volume_manager.cc:220: VolumeInfo::VolumeInfo() { On 2014/03/26 08:15:03, satorux1 wrote: > I ...
6 years, 9 months ago (2014-03-26 10:27:41 UTC) #11
satorux1
LGTM with comments: https://codereview.chromium.org/194693002/diff/300001/chrome/test/data/extensions/api_test/file_system_provider/unmount/test.js File chrome/test/data/extensions/api_test/file_system_provider/unmount/test.js (right): https://codereview.chromium.org/194693002/diff/300001/chrome/test/data/extensions/api_test/file_system_provider/unmount/test.js#newcode28 chrome/test/data/extensions/api_test/file_system_provider/unmount/test.js:28: // Tests the fileBrowserPrivate.unmount(). Verifies if ...
6 years, 9 months ago (2014-03-27 04:43:24 UTC) #12
mtomasz
@benwells: PTAL at *.idl. @kinuko: PTAL at fileapi. Thanks. https://codereview.chromium.org/194693002/diff/300001/chrome/test/data/extensions/api_test/file_system_provider/unmount/test.js File chrome/test/data/extensions/api_test/file_system_provider/unmount/test.js (right): https://codereview.chromium.org/194693002/diff/300001/chrome/test/data/extensions/api_test/file_system_provider/unmount/test.js#newcode28 chrome/test/data/extensions/api_test/file_system_provider/unmount/test.js:28: ...
6 years, 9 months ago (2014-03-27 04:55:29 UTC) #13
mtomasz
On 2014/03/27 04:55:29, mtomasz OOO until 21.03 wrote: > @benwells: PTAL at *.idl. > @kinuko: ...
6 years, 9 months ago (2014-03-27 04:57:00 UTC) #14
benwells
https://codereview.chromium.org/194693002/diff/340001/chrome/common/extensions/api/file_system_provider.idl File chrome/common/extensions/api/file_system_provider.idl (right): https://codereview.chromium.org/194693002/diff/340001/chrome/common/extensions/api/file_system_provider.idl#newcode10 chrome/common/extensions/api/file_system_provider.idl:10: // Error codes, same as in base::Files::Error. Note, that ...
6 years, 8 months ago (2014-03-30 22:37:07 UTC) #15
mtomasz
https://codereview.chromium.org/194693002/diff/340001/chrome/common/extensions/api/file_system_provider.idl File chrome/common/extensions/api/file_system_provider.idl (right): https://codereview.chromium.org/194693002/diff/340001/chrome/common/extensions/api/file_system_provider.idl#newcode10 chrome/common/extensions/api/file_system_provider.idl:10: // Error codes, same as in base::Files::Error. Note, that ...
6 years, 8 months ago (2014-03-31 01:01:47 UTC) #16
mtomasz
https://codereview.chromium.org/194693002/diff/340001/chrome/common/extensions/api/file_system_provider.idl File chrome/common/extensions/api/file_system_provider.idl (right): https://codereview.chromium.org/194693002/diff/340001/chrome/common/extensions/api/file_system_provider.idl#newcode44 chrome/common/extensions/api/file_system_provider.idl:44: [nodoc, instanceOf=DOMError] object error); On 2014/03/31 01:01:47, mtomasz wrote: ...
6 years, 8 months ago (2014-03-31 01:08:52 UTC) #17
benwells
One more question ... https://codereview.chromium.org/194693002/diff/380001/chrome/common/extensions/api/_api_features.json File chrome/common/extensions/api/_api_features.json (right): https://codereview.chromium.org/194693002/diff/380001/chrome/common/extensions/api/_api_features.json#newcode369 chrome/common/extensions/api/_api_features.json:369: "contexts": ["blessed_extension", "unblessed_extension"] Why is ...
6 years, 8 months ago (2014-03-31 02:24:10 UTC) #18
mtomasz
https://codereview.chromium.org/194693002/diff/380001/chrome/common/extensions/api/_api_features.json File chrome/common/extensions/api/_api_features.json (right): https://codereview.chromium.org/194693002/diff/380001/chrome/common/extensions/api/_api_features.json#newcode369 chrome/common/extensions/api/_api_features.json:369: "contexts": ["blessed_extension", "unblessed_extension"] On 2014/03/31 02:24:10, benwells wrote: > ...
6 years, 8 months ago (2014-03-31 02:27:14 UTC) #19
benwells
https://codereview.chromium.org/194693002/diff/380001/chrome/common/extensions/api/_api_features.json File chrome/common/extensions/api/_api_features.json (right): https://codereview.chromium.org/194693002/diff/380001/chrome/common/extensions/api/_api_features.json#newcode369 chrome/common/extensions/api/_api_features.json:369: "contexts": ["blessed_extension", "unblessed_extension"] On 2014/03/31 02:27:15, mtomasz wrote: > ...
6 years, 8 months ago (2014-03-31 02:38:02 UTC) #20
mtomasz
https://codereview.chromium.org/194693002/diff/380001/chrome/common/extensions/api/_api_features.json File chrome/common/extensions/api/_api_features.json (right): https://codereview.chromium.org/194693002/diff/380001/chrome/common/extensions/api/_api_features.json#newcode369 chrome/common/extensions/api/_api_features.json:369: "contexts": ["blessed_extension", "unblessed_extension"] On 2014/03/31 02:38:03, benwells wrote: > ...
6 years, 8 months ago (2014-03-31 03:16:46 UTC) #21
mtomasz
On 2014/03/31 03:16:46, mtomasz wrote: > https://codereview.chromium.org/194693002/diff/380001/chrome/common/extensions/api/_api_features.json > File chrome/common/extensions/api/_api_features.json (right): > > https://codereview.chromium.org/194693002/diff/380001/chrome/common/extensions/api/_api_features.json#newcode369 > ...
6 years, 8 months ago (2014-04-01 17:39:31 UTC) #22
benwells
Lgtm setn from phonr On Mar 31, 2014 2:16 PM, <mtomasz@chromium.org> wrote: > > https://codereview.chromium.org/194693002/diff/380001/ ...
6 years, 8 months ago (2014-04-01 20:40:34 UTC) #23
benwells
lgtm
6 years, 8 months ago (2014-04-01 21:04:52 UTC) #24
mtomasz
@isherman: PTAL at histograms.xml.
6 years, 8 months ago (2014-04-04 20:41:38 UTC) #25
Ilya Sherman
histograms.xml lgtm
6 years, 8 months ago (2014-04-04 21:49:22 UTC) #26
mtomasz
The CQ bit was checked by mtomasz@chromium.org
6 years, 8 months ago (2014-04-07 18:32:16 UTC) #27
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/mtomasz@chromium.org/194693002/440001
6 years, 8 months ago (2014-04-07 18:32:32 UTC) #28
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 8 months ago (2014-04-07 19:21:14 UTC) #29
commit-bot: I haz the power
Try jobs failed on following builders: tryserver.chromium on linux_chromium_chromeos_clang_dbg
6 years, 8 months ago (2014-04-07 19:21:14 UTC) #30
mtomasz
The CQ bit was checked by mtomasz@chromium.org
6 years, 8 months ago (2014-04-07 19:42:57 UTC) #31
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/mtomasz@chromium.org/194693002/460001
6 years, 8 months ago (2014-04-07 19:43:32 UTC) #32
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 8 months ago (2014-04-07 19:43:46 UTC) #33
commit-bot: I haz the power
Failed to apply patch for extensions/browser/extension_function_histogram_value.h: While running patch -p1 --forward --force --no-backup-if-mismatch; patching file ...
6 years, 8 months ago (2014-04-07 19:43:47 UTC) #34
mtomasz
The CQ bit was checked by mtomasz@chromium.org
6 years, 8 months ago (2014-04-07 19:51:24 UTC) #35
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/mtomasz@chromium.org/194693002/480001
6 years, 8 months ago (2014-04-07 19:52:07 UTC) #36
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 8 months ago (2014-04-07 20:06:18 UTC) #37
commit-bot: I haz the power
Try jobs failed on following builders: tryserver.chromium on linux_chromium_chromeos_rel tryserver.chromium on linux_chromium_clang_dbg
6 years, 8 months ago (2014-04-07 20:06:19 UTC) #38
mtomasz
The CQ bit was checked by mtomasz@chromium.org
6 years, 8 months ago (2014-04-07 20:33:49 UTC) #39
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/mtomasz@chromium.org/194693002/500001
6 years, 8 months ago (2014-04-07 20:34:10 UTC) #40
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 8 months ago (2014-04-07 22:09:16 UTC) #41
commit-bot: I haz the power
Try jobs failed on following builders: tryserver.chromium on linux_chromium_chromeos_rel
6 years, 8 months ago (2014-04-07 22:09:17 UTC) #42
mtomasz
The CQ bit was checked by mtomasz@chromium.org
6 years, 8 months ago (2014-04-07 22:26:07 UTC) #43
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/mtomasz@chromium.org/194693002/500001
6 years, 8 months ago (2014-04-07 22:26:56 UTC) #44
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 8 months ago (2014-04-07 23:46:59 UTC) #45
commit-bot: I haz the power
Try jobs failed on following builders: tryserver.chromium on linux_chromium_chromeos_rel
6 years, 8 months ago (2014-04-07 23:47:00 UTC) #46
mtomasz
The CQ bit was checked by mtomasz@chromium.org
6 years, 8 months ago (2014-04-08 02:14:28 UTC) #47
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/mtomasz@chromium.org/194693002/500001
6 years, 8 months ago (2014-04-08 02:14:56 UTC) #48
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 8 months ago (2014-04-08 02:15:08 UTC) #49
commit-bot: I haz the power
Failed to apply patch for extensions/browser/extension_function_histogram_value.h: While running patch -p1 --forward --force --no-backup-if-mismatch; patching file ...
6 years, 8 months ago (2014-04-08 02:15:08 UTC) #50
mtomasz
The CQ bit was checked by mtomasz@chromium.org
6 years, 8 months ago (2014-04-08 21:21:13 UTC) #51
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/mtomasz@chromium.org/194693002/540001
6 years, 8 months ago (2014-04-08 21:21:18 UTC) #52
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 8 months ago (2014-04-08 22:40:08 UTC) #53
commit-bot: I haz the power
Try jobs failed on following builders: tryserver.chromium on linux_chromium_chromeos_rel
6 years, 8 months ago (2014-04-08 22:40:09 UTC) #54
mtomasz
The CQ bit was checked by mtomasz@chromium.org
6 years, 8 months ago (2014-04-09 01:34:56 UTC) #55
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/mtomasz@chromium.org/194693002/540001
6 years, 8 months ago (2014-04-09 01:35:44 UTC) #56
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/mtomasz@chromium.org/194693002/540001
6 years, 8 months ago (2014-04-09 01:46:47 UTC) #57
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/mtomasz@chromium.org/194693002/540001
6 years, 8 months ago (2014-04-09 01:57:05 UTC) #58
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/mtomasz@chromium.org/194693002/540001
6 years, 8 months ago (2014-04-09 02:16:31 UTC) #59
mtomasz
The CQ bit was checked by mtomasz@chromium.org
6 years, 8 months ago (2014-04-09 03:15:24 UTC) #60
commit-bot: I haz the power
Try jobs failed on following builders: tryserver.chromium on linux_chromium_chromeos_rel
6 years, 8 months ago (2014-04-09 04:01:28 UTC) #61
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/mtomasz@chromium.org/194693002/560001
6 years, 8 months ago (2014-04-09 04:01:34 UTC) #62
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/mtomasz@chromium.org/194693002/560001
6 years, 8 months ago (2014-04-09 04:43:00 UTC) #63
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/mtomasz@chromium.org/194693002/560001
6 years, 8 months ago (2014-04-09 04:48:52 UTC) #64
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/mtomasz@chromium.org/194693002/560001
6 years, 8 months ago (2014-04-09 04:53:43 UTC) #65
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/mtomasz@chromium.org/194693002/560001
6 years, 8 months ago (2014-04-09 04:58:35 UTC) #66
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 8 months ago (2014-04-09 06:17:42 UTC) #67
commit-bot: I haz the power
Try jobs failed on following builders: tryserver.chromium on linux_chromium_chromeos_rel
6 years, 8 months ago (2014-04-09 06:17:43 UTC) #68
mtomasz
The CQ bit was checked by mtomasz@chromium.org
6 years, 8 months ago (2014-04-09 19:25:47 UTC) #69
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/mtomasz@chromium.org/194693002/580001
6 years, 8 months ago (2014-04-09 19:26:30 UTC) #70
commit-bot: I haz the power
6 years, 8 months ago (2014-04-09 22:25:33 UTC) #71
Message was sent while issue was closed.
Change committed as 262840

Powered by Google App Engine
This is Rietveld 408576698