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

Issue 452043003: [ew] Add basic classes. (Closed)

Created:
6 years, 4 months ago by mtomasz
Modified:
6 years, 3 months ago
CC:
chromium-reviews, extensions-reviews_chromium.org, jam, nkostylev+watch_chromium.org, tzik, Lei Zhang, tfarina, Greg Billock, nhiroki, tommycli, darin-cc_chromium.org, oshima+watch_chromium.org, vandebo (ex-Chrome), chromium-apps-reviews_chromium.org, stevenjb+watch_chromium.org, kinuko+fileapi, davemoore+watch_chromium.org
Project:
chromium
Visibility:
Public.

Description

[ew] Add basic classes. This patch adds a EntryWatcherService, which is a bridge between extensions and fileapi. Also, WatcherManager interface has been created to let backends implement their own watching logic. Note, that EntryWatcherService is not wired up to File System API yet. Also, a lot of features are missing. TBR=noamsml, jcivelli TEST=unit_tests: *EntryWatcherService* BUG=261491 Committed: https://crrev.com/b75244fdf1d75e67485649e6a96a69c50676bbc3 Cr-Commit-Position: refs/heads/master@{#292327}

Patch Set 1 #

Patch Set 2 : Cleaned up. #

Patch Set 3 : Added more tests + comments. #

Total comments: 13

Patch Set 4 : Addressed comments. #

Total comments: 56

Patch Set 5 : Uploaded. #

Total comments: 2

Patch Set 6 : Addressed comments. #

Patch Set 7 : Cleaned up. #

Total comments: 2

Patch Set 8 : Fixed. #

Patch Set 9 : (Huge) rebase. #

Patch Set 10 : Rebased. #

Patch Set 11 : Added missing files. #

Total comments: 3
Unified diffs Side-by-side diffs Delta from patch set Stats (+1030 lines, -1 line) Patch
M chrome/browser/chromeos/drive/fileapi/file_system_backend_delegate.h View 1 2 3 4 5 6 7 8 2 chunks +7 lines, -0 lines 0 comments Download
M chrome/browser/chromeos/drive/fileapi/file_system_backend_delegate.cc View 1 2 3 4 5 6 7 8 1 chunk +6 lines, -0 lines 0 comments Download
M chrome/browser/chromeos/file_system_provider/fileapi/backend_delegate.h View 1 2 3 4 5 6 7 8 2 chunks +8 lines, -0 lines 0 comments Download
M chrome/browser/chromeos/file_system_provider/fileapi/backend_delegate.cc View 1 2 3 4 5 6 7 8 1 chunk +6 lines, -0 lines 0 comments Download
M chrome/browser/chromeos/fileapi/file_system_backend.h View 1 2 3 4 5 6 7 8 2 chunks +3 lines, -0 lines 0 comments Download
M chrome/browser/chromeos/fileapi/file_system_backend.cc View 1 2 3 4 5 6 7 8 1 chunk +5 lines, -0 lines 0 comments Download
M chrome/browser/chromeos/fileapi/file_system_backend_delegate.h View 1 2 3 4 5 6 7 8 3 chunks +8 lines, -1 line 0 comments Download
M chrome/browser/chromeos/fileapi/mtp_file_system_backend_delegate.h View 1 2 3 4 5 6 7 8 2 chunks +11 lines, -0 lines 0 comments Download
M chrome/browser/chromeos/fileapi/mtp_file_system_backend_delegate.cc View 1 2 3 4 5 6 7 8 1 chunk +6 lines, -0 lines 0 comments Download
M chrome/browser/extensions/api/file_system/OWNERS View 1 2 3 4 5 6 7 8 9 10 1 chunk +1 line, -0 lines 0 comments Download
A chrome/browser/extensions/api/file_system/entry_watcher_service.h View 1 2 3 4 5 6 7 8 9 10 1 chunk +128 lines, -0 lines 0 comments Download
A chrome/browser/extensions/api/file_system/entry_watcher_service.cc View 1 2 3 4 5 6 7 8 9 10 1 chunk +253 lines, -0 lines 0 comments Download
A chrome/browser/extensions/api/file_system/entry_watcher_service_factory.h View 1 2 3 4 5 9 10 1 chunk +49 lines, -0 lines 0 comments Download
A chrome/browser/extensions/api/file_system/entry_watcher_service_factory.cc View 1 2 3 4 5 9 10 1 chunk +37 lines, -0 lines 0 comments Download
A chrome/browser/extensions/api/file_system/entry_watcher_service_unittest.cc View 1 2 3 4 5 6 7 8 9 10 1 chunk +254 lines, -0 lines 0 comments Download
M chrome/browser/extensions/api/file_system/file_system_api.h View 1 chunk +1 line, -0 lines 0 comments Download
M chrome/browser/extensions/api/file_system/file_system_api.cc View 1 2 3 4 5 6 7 8 1 chunk +2 lines, -0 lines 0 comments Download
M chrome/browser/local_discovery/storage/privet_filesystem_backend.h View 1 2 3 4 5 6 7 8 1 chunk +2 lines, -0 lines 0 comments Download
M chrome/browser/local_discovery/storage/privet_filesystem_backend.cc View 1 2 3 4 5 6 7 8 1 chunk +5 lines, -0 lines 0 comments Download
M chrome/browser/media_galleries/fileapi/media_file_system_backend.h View 1 2 3 4 5 6 7 8 1 chunk +2 lines, -0 lines 0 comments Download
M chrome/browser/media_galleries/fileapi/media_file_system_backend.cc View 1 2 3 4 5 6 7 8 2 chunks +6 lines, -0 lines 0 comments Download
M chrome/browser/sync_file_system/local/sync_file_system_backend.h View 1 2 3 4 5 6 7 8 1 chunk +2 lines, -0 lines 0 comments Download
M chrome/browser/sync_file_system/local/sync_file_system_backend.cc View 1 2 3 4 5 6 7 8 2 chunks +7 lines, -0 lines 0 comments Download
M chrome/chrome_browser_extensions.gypi View 1 2 3 4 5 6 7 8 9 1 chunk +4 lines, -0 lines 0 comments Download
M chrome/chrome_tests_unit.gypi View 1 2 3 4 5 6 7 8 9 1 chunk +1 line, -0 lines 0 comments Download
M content/public/test/test_file_system_backend.h View 1 2 3 4 5 6 7 8 2 chunks +3 lines, -0 lines 0 comments Download
M content/public/test/test_file_system_backend.cc View 1 2 3 4 5 6 7 8 6 chunks +107 lines, -0 lines 3 comments Download
M webkit/browser/fileapi/file_system_backend.h View 1 2 3 4 5 6 7 8 9 3 chunks +6 lines, -0 lines 0 comments Download
M webkit/browser/fileapi/file_system_context.h View 1 2 3 4 5 6 7 8 9 2 chunks +5 lines, -0 lines 0 comments Download
M webkit/browser/fileapi/file_system_context.cc View 1 2 3 4 5 6 7 8 1 chunk +8 lines, -0 lines 0 comments Download
M webkit/browser/fileapi/isolated_file_system_backend.h View 1 2 3 4 5 6 7 8 1 chunk +1 line, -0 lines 0 comments Download
M webkit/browser/fileapi/isolated_file_system_backend.cc View 1 2 3 4 5 6 7 8 2 chunks +6 lines, -0 lines 0 comments Download
M webkit/browser/fileapi/plugin_private_file_system_backend.h View 1 2 3 4 5 6 7 8 9 2 chunks +2 lines, -0 lines 0 comments Download
M webkit/browser/fileapi/plugin_private_file_system_backend.cc View 1 2 3 4 5 6 7 8 1 chunk +5 lines, -0 lines 0 comments Download
M webkit/browser/fileapi/sandbox_file_system_backend.h View 1 2 3 4 5 6 7 8 9 1 chunk +1 line, -0 lines 0 comments Download
M webkit/browser/fileapi/sandbox_file_system_backend.cc View 1 2 3 4 5 6 7 8 1 chunk +5 lines, -0 lines 0 comments Download
A webkit/browser/fileapi/watcher_manager.h View 1 2 3 4 5 6 7 8 9 10 1 chunk +67 lines, -0 lines 0 comments Download

Messages

Total messages: 58 (0 generated)
mtomasz
@benwells: PTAL at */file_system/*. @kinaba: PTAL at /c/b/chromeos/fileapi/*, *drive*, *mtp*. @tzik: PTAL at *webkit*, *fileapi*. ...
6 years, 4 months ago (2014-08-12 03:14:58 UTC) #1
mtomasz
On 2014/08/12 03:14:58, mtomasz wrote: > @benwells: PTAL at */file_system/*. > @kinaba: PTAL at /c/b/chromeos/fileapi/*, ...
6 years, 4 months ago (2014-08-12 04:49:58 UTC) #2
kinaba
Stamp LGTM for files I own. https://codereview.chromium.org/452043003/diff/40001/webkit/browser/fileapi/watcher_manager.h File webkit/browser/fileapi/watcher_manager.h (right): https://codereview.chromium.org/452043003/diff/40001/webkit/browser/fileapi/watcher_manager.h#newcode58 webkit/browser/fileapi/watcher_manager.h:58: // already watched, ...
6 years, 4 months ago (2014-08-12 09:15:37 UTC) #3
mtomasz
https://codereview.chromium.org/452043003/diff/40001/webkit/browser/fileapi/watcher_manager.h File webkit/browser/fileapi/watcher_manager.h (right): https://codereview.chromium.org/452043003/diff/40001/webkit/browser/fileapi/watcher_manager.h#newcode58 webkit/browser/fileapi/watcher_manager.h:58: // already watched, or setting up the watcher fails, ...
6 years, 4 months ago (2014-08-12 09:31:37 UTC) #4
tzik
Not yet look all of them, let me revisit later. https://codereview.chromium.org/452043003/diff/40001/chrome/browser/file_system/entry_watcher_service.cc File chrome/browser/file_system/entry_watcher_service.cc (right): https://codereview.chromium.org/452043003/diff/40001/chrome/browser/file_system/entry_watcher_service.cc#newcode73 ...
6 years, 4 months ago (2014-08-12 10:40:46 UTC) #5
mtomasz
https://codereview.chromium.org/452043003/diff/40001/chrome/browser/file_system/entry_watcher_service.cc File chrome/browser/file_system/entry_watcher_service.cc (right): https://codereview.chromium.org/452043003/diff/40001/chrome/browser/file_system/entry_watcher_service.cc#newcode73 chrome/browser/file_system/entry_watcher_service.cc:73: base::MessageLoopProxy::current()->PostTask( On 2014/08/12 10:40:46, tzik wrote: > MessageLoopProxy seems ...
6 years, 4 months ago (2014-08-13 03:08:44 UTC) #6
benwells
Mostly questions... https://codereview.chromium.org/452043003/diff/60001/chrome/browser/extensions/api/file_system/file_system_api.cc File chrome/browser/extensions/api/file_system/file_system_api.cc (right): https://codereview.chromium.org/452043003/diff/60001/chrome/browser/extensions/api/file_system/file_system_api.cc#newcode8 chrome/browser/extensions/api/file_system/file_system_api.cc:8: #include <string> As <string> is in the ...
6 years, 4 months ago (2014-08-13 05:50:48 UTC) #7
mtomasz
https://codereview.chromium.org/452043003/diff/60001/chrome/browser/extensions/api/file_system/file_system_api.cc File chrome/browser/extensions/api/file_system/file_system_api.cc (right): https://codereview.chromium.org/452043003/diff/60001/chrome/browser/extensions/api/file_system/file_system_api.cc#newcode8 chrome/browser/extensions/api/file_system/file_system_api.cc:8: #include <string> On 2014/08/13 05:50:46, benwells wrote: > As ...
6 years, 4 months ago (2014-08-13 07:02:10 UTC) #8
tzik
LGTM for my part. https://codereview.chromium.org/452043003/diff/60001/chrome/browser/file_system/entry_watcher_service.h File chrome/browser/file_system/entry_watcher_service.h (right): https://codereview.chromium.org/452043003/diff/60001/chrome/browser/file_system/entry_watcher_service.h#newcode44 chrome/browser/file_system/entry_watcher_service.h:44: GetWatchedEntriesCallback; Not used? / Can ...
6 years, 4 months ago (2014-08-13 09:21:49 UTC) #9
benwells
https://codereview.chromium.org/452043003/diff/60001/chrome/browser/extensions/api/file_system/file_system_api.cc File chrome/browser/extensions/api/file_system/file_system_api.cc (right): https://codereview.chromium.org/452043003/diff/60001/chrome/browser/extensions/api/file_system/file_system_api.cc#newcode8 chrome/browser/extensions/api/file_system/file_system_api.cc:8: #include <string> On 2014/08/13 07:02:08, mtomasz wrote: > On ...
6 years, 4 months ago (2014-08-13 23:57:02 UTC) #10
mtomasz
On 2014/08/13 23:57:02, benwells wrote: > https://codereview.chromium.org/452043003/diff/60001/chrome/browser/extensions/api/file_system/file_system_api.cc > File chrome/browser/extensions/api/file_system/file_system_api.cc (right): > > https://codereview.chromium.org/452043003/diff/60001/chrome/browser/extensions/api/file_system/file_system_api.cc#newcode8 > ...
6 years, 4 months ago (2014-08-14 00:27:37 UTC) #11
benwells
lgtm https://codereview.chromium.org/452043003/diff/60001/chrome/browser/file_system/OWNERS File chrome/browser/file_system/OWNERS (right): https://codereview.chromium.org/452043003/diff/60001/chrome/browser/file_system/OWNERS#newcode1 chrome/browser/file_system/OWNERS:1: benwells@chromium.org On 2014/08/13 07:02:08, mtomasz wrote: > On ...
6 years, 4 months ago (2014-08-14 05:16:32 UTC) #12
benwells
On 2014/08/14 05:16:32, benwells wrote: > lgtm > > https://codereview.chromium.org/452043003/diff/60001/chrome/browser/file_system/OWNERS > File chrome/browser/file_system/OWNERS (right): > ...
6 years, 4 months ago (2014-08-14 05:17:48 UTC) #13
kinaba
lgtm still https://codereview.chromium.org/452043003/diff/40001/webkit/browser/fileapi/watcher_manager.h File webkit/browser/fileapi/watcher_manager.h (right): https://codereview.chromium.org/452043003/diff/40001/webkit/browser/fileapi/watcher_manager.h#newcode58 webkit/browser/fileapi/watcher_manager.h:58: // already watched, or setting up the ...
6 years, 4 months ago (2014-08-14 05:22:50 UTC) #14
mtomasz
https://codereview.chromium.org/452043003/diff/40001/webkit/browser/fileapi/watcher_manager.h File webkit/browser/fileapi/watcher_manager.h (right): https://codereview.chromium.org/452043003/diff/40001/webkit/browser/fileapi/watcher_manager.h#newcode58 webkit/browser/fileapi/watcher_manager.h:58: // already watched, or setting up the watcher fails, ...
6 years, 4 months ago (2014-08-15 05:35:57 UTC) #15
mtomasz
6 years, 4 months ago (2014-08-15 05:36:52 UTC) #16
kinaba
https://codereview.chromium.org/452043003/diff/40001/webkit/browser/fileapi/watcher_manager.h File webkit/browser/fileapi/watcher_manager.h (right): https://codereview.chromium.org/452043003/diff/40001/webkit/browser/fileapi/watcher_manager.h#newcode58 webkit/browser/fileapi/watcher_manager.h:58: // already watched, or setting up the watcher fails, ...
6 years, 4 months ago (2014-08-18 02:32:15 UTC) #17
mtomasz
On 2014/08/18 02:32:15, kinaba wrote: > https://codereview.chromium.org/452043003/diff/40001/webkit/browser/fileapi/watcher_manager.h > File webkit/browser/fileapi/watcher_manager.h (right): > > https://codereview.chromium.org/452043003/diff/40001/webkit/browser/fileapi/watcher_manager.h#newcode58 > ...
6 years, 4 months ago (2014-08-18 08:22:32 UTC) #18
benwells
lgtm with some nits (including one from tzik) I think having you as an owner ...
6 years, 4 months ago (2014-08-18 22:58:33 UTC) #19
mtomasz
https://codereview.chromium.org/452043003/diff/60001/chrome/browser/file_system/entry_watcher_service.cc File chrome/browser/file_system/entry_watcher_service.cc (right): https://codereview.chromium.org/452043003/diff/60001/chrome/browser/file_system/entry_watcher_service.cc#newcode197 chrome/browser/file_system/entry_watcher_service.cc:197: callback.Run(base::File::FILE_ERROR_SECURITY); On 2014/08/18 22:58:32, benwells wrote: > On 2014/08/15 ...
6 years, 4 months ago (2014-08-19 06:50:36 UTC) #20
mtomasz
On 2014/08/19 06:50:36, mtomasz wrote: > https://codereview.chromium.org/452043003/diff/60001/chrome/browser/file_system/entry_watcher_service.cc > File chrome/browser/file_system/entry_watcher_service.cc (right): > > https://codereview.chromium.org/452043003/diff/60001/chrome/browser/file_system/entry_watcher_service.cc#newcode197 > ...
6 years, 4 months ago (2014-08-25 05:39:56 UTC) #21
kinaba
On 2014/08/25 05:39:56, mtomasz wrote: > On 2014/08/19 06:50:36, mtomasz wrote: > > > https://codereview.chromium.org/452043003/diff/60001/chrome/browser/file_system/entry_watcher_service.cc ...
6 years, 4 months ago (2014-08-25 06:04:24 UTC) #22
mtomasz
On 2014/08/25 06:04:24, kinaba wrote: > On 2014/08/25 05:39:56, mtomasz wrote: > > On 2014/08/19 ...
6 years, 4 months ago (2014-08-25 08:38:18 UTC) #23
mtomasz
The CQ bit was checked by mtomasz@chromium.org
6 years, 4 months ago (2014-08-25 08:38:24 UTC) #24
mtomasz
The CQ bit was unchecked by mtomasz@chromium.org
6 years, 4 months ago (2014-08-25 08:38:27 UTC) #25
mtomasz
The CQ bit was checked by mtomasz@chromium.org
6 years, 4 months ago (2014-08-25 08:39:01 UTC) #26
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/mtomasz@chromium.org/452043003/160001
6 years, 4 months ago (2014-08-25 08:39:31 UTC) #27
commit-bot: I haz the power
FYI, CQ is re-trying this CL (attempt #1). The failing builders are: linux_gpu on tryserver.chromium.gpu ...
6 years, 4 months ago (2014-08-25 09:21:55 UTC) #28
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 4 months ago (2014-08-25 09:24:22 UTC) #29
commit-bot: I haz the power
Try jobs failed on following builders: mac_chromium_compile_dbg on tryserver.chromium.mac (http://build.chromium.org/p/tryserver.chromium.mac/builders/mac_chromium_compile_dbg/builds/8937) mac_chromium_rel_swarming on tryserver.chromium.mac (http://build.chromium.org/p/tryserver.chromium.mac/builders/mac_chromium_rel_swarming/builds/6433)
6 years, 4 months ago (2014-08-25 09:24:24 UTC) #30
mtomasz
The CQ bit was checked by mtomasz@chromium.org
6 years, 4 months ago (2014-08-26 00:02:11 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/452043003/160001
6 years, 4 months ago (2014-08-26 00:03:56 UTC) #32
mtomasz
The CQ bit was unchecked by mtomasz@chromium.org
6 years, 4 months ago (2014-08-26 00:49:14 UTC) #33
mtomasz
mtomasz@chromium.org changed reviewers: + jcivelli@chromium.org, noamsml@chromium.org
6 years, 4 months ago (2014-08-26 01:11:13 UTC) #34
mtomasz
mtomasz@chromium.org changed reviewers: - jcivelli@chromium.org
6 years, 4 months ago (2014-08-26 01:12:42 UTC) #35
mtomasz
@noamsml: TBR for trivial change in privet_filesystem_backend.cc.
6 years, 4 months ago (2014-08-26 01:12:42 UTC) #36
mtomasz
The CQ bit was checked by mtomasz@chromium.org
6 years, 4 months ago (2014-08-26 01:13:23 UTC) #37
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/mtomasz@chromium.org/452043003/200001
6 years, 4 months ago (2014-08-26 01:15:23 UTC) #38
mtomasz
mtomasz@chromium.org changed reviewers: + sky@chromium.org
6 years, 4 months ago (2014-08-26 01:46:36 UTC) #39
mtomasz
On 2014/08/26 01:46:36, mtomasz wrote: > mailto:mtomasz@chromium.org changed reviewers: > + mailto:sky@chromium.org @sky: PTAL at ...
6 years, 4 months ago (2014-08-26 01:47:27 UTC) #40
sky
https://codereview.chromium.org/452043003/diff/220001/content/public/test/test_file_system_backend.cc File content/public/test/test_file_system_backend.cc (right): https://codereview.chromium.org/452043003/diff/220001/content/public/test/test_file_system_backend.cc#newcode102 content/public/test/test_file_system_backend.cc:102: base::ThreadTaskRunnerHandle::Get()->PostTask( Is base::ThreadTaskRunnerHandle::Get() a separate thread than current? Might ...
6 years, 3 months ago (2014-08-26 16:45:27 UTC) #41
Noam Samuel
lgtm
6 years, 3 months ago (2014-08-26 18:57:03 UTC) #42
mtomasz
https://codereview.chromium.org/452043003/diff/220001/content/public/test/test_file_system_backend.cc File content/public/test/test_file_system_backend.cc (right): https://codereview.chromium.org/452043003/diff/220001/content/public/test/test_file_system_backend.cc#newcode102 content/public/test/test_file_system_backend.cc:102: base::ThreadTaskRunnerHandle::Get()->PostTask( On 2014/08/26 16:45:27, sky wrote: > Is base::ThreadTaskRunnerHandle::Get() ...
6 years, 3 months ago (2014-08-26 23:04:53 UTC) #43
sky
https://codereview.chromium.org/452043003/diff/220001/content/public/test/test_file_system_backend.cc File content/public/test/test_file_system_backend.cc (right): https://codereview.chromium.org/452043003/diff/220001/content/public/test/test_file_system_backend.cc#newcode102 content/public/test/test_file_system_backend.cc:102: base::ThreadTaskRunnerHandle::Get()->PostTask( On 2014/08/26 23:04:53, mtomasz wrote: > On 2014/08/26 ...
6 years, 3 months ago (2014-08-26 23:51:09 UTC) #44
mtomasz
On 2014/08/26 23:51:09, sky wrote: > https://codereview.chromium.org/452043003/diff/220001/content/public/test/test_file_system_backend.cc > File content/public/test/test_file_system_backend.cc (right): > > https://codereview.chromium.org/452043003/diff/220001/content/public/test/test_file_system_backend.cc#newcode102 > ...
6 years, 3 months ago (2014-08-27 00:57:30 UTC) #45
sky
Fair enough, LGTM
6 years, 3 months ago (2014-08-27 14:35:01 UTC) #46
mtomasz
The CQ bit was checked by mtomasz@chromium.org
6 years, 3 months ago (2014-08-27 22:48:34 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/452043003/220001
6 years, 3 months ago (2014-08-27 22:53:13 UTC) #48
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 3 months ago (2014-08-28 00:25:52 UTC) #49
commit-bot: I haz the power
Failed to commit the patch.
6 years, 3 months ago (2014-08-28 00:25:54 UTC) #50
mtomasz
The CQ bit was checked by mtomasz@chromium.org
6 years, 3 months ago (2014-08-28 00:28:33 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/452043003/220001
6 years, 3 months ago (2014-08-28 00:31:14 UTC) #52
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 3 months ago (2014-08-28 01:02:02 UTC) #53
commit-bot: I haz the power
Failed to commit the patch.
6 years, 3 months ago (2014-08-28 01:02:03 UTC) #54
mtomasz
The CQ bit was checked by mtomasz@chromium.org
6 years, 3 months ago (2014-08-28 05:31:03 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/452043003/220001
6 years, 3 months ago (2014-08-28 05:31:29 UTC) #56
commit-bot: I haz the power
Committed patchset #11 (id:220001) as b15956493ebd3cf823761ea6f34815fefbe6ec79
6 years, 3 months ago (2014-08-28 05:37:52 UTC) #57
commit-bot: I haz the power
6 years, 3 months ago (2014-09-10 02:57:48 UTC) #58
Message was sent while issue was closed.
Patchset 11 (id:??) landed as
https://crrev.com/b75244fdf1d75e67485649e6a96a69c50676bbc3
Cr-Commit-Position: refs/heads/master@{#292327}

Powered by Google App Engine
This is Rietveld 408576698