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

Issue 2568033002: mediaview: Skeleton for ARC Documents Provider FS. (Closed)

Created:
4 years ago by Shuhei Takahashi
Modified:
4 years ago
CC:
chromium-reviews, elijahtaylor+arcwatch_chromium.org, yusukes+watch_chromium.org, tzik, hidehiko+watch_chromium.org, nhiroki, lhchavez+watch_chromium.org, oshima+watch_chromium.org, kinuko+fileapi, davemoore+watch_chromium.org
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

mediaview: Skeleton of ARC Documents Provider FS. This patch will add a skelton of ARC Documents Provider File System which will allow Chrome to access Android Documents Provider in ARC. It almost contains boilerplates only; implementations are coming in later patches. BUG=chromium:671511 TEST=trybot Committed: https://crrev.com/f5df1e3fe0001e776729dafe7be76ad9f8096868 Cr-Commit-Position: refs/heads/master@{#438431}

Patch Set 1 #

Total comments: 4

Patch Set 2 : Remove unused weak_ptr_factory_. #

Total comments: 20

Patch Set 3 : IWYU and comments. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+441 lines, -22 lines) Patch
M chrome/browser/chrome_content_browser_client.cc View 2 chunks +2 lines, -0 lines 0 comments Download
M chrome/browser/chromeos/BUILD.gn View 1 chunk +4 lines, -0 lines 0 comments Download
A chrome/browser/chromeos/arc/fileapi/arc_documents_provider_async_file_util.h View 1 1 chunk +97 lines, -0 lines 0 comments Download
A chrome/browser/chromeos/arc/fileapi/arc_documents_provider_async_file_util.cc View 1 2 1 chunk +168 lines, -0 lines 0 comments Download
A chrome/browser/chromeos/arc/fileapi/arc_documents_provider_backend_delegate.h View 1 2 1 chunk +49 lines, -0 lines 0 comments Download
A chrome/browser/chromeos/arc/fileapi/arc_documents_provider_backend_delegate.cc View 1 2 1 chunk +69 lines, -0 lines 0 comments Download
M chrome/browser/chromeos/fileapi/file_system_backend.h View 2 chunks +5 lines, -0 lines 0 comments Download
M chrome/browser/chromeos/fileapi/file_system_backend.cc View 11 chunks +18 lines, -3 lines 0 comments Download
M chrome/browser/chromeos/fileapi/file_system_backend_unittest.cc View 4 chunks +22 lines, -18 lines 0 comments Download
M chrome/browser/platform_util_unittest.cc View 1 chunk +1 line, -1 line 0 comments Download
M storage/browser/fileapi/file_system_context.cc View 1 chunk +1 line, -0 lines 0 comments Download
M storage/common/fileapi/file_system_types.h View 1 chunk +3 lines, -0 lines 0 comments Download
M storage/common/fileapi/file_system_util.cc View 1 chunk +2 lines, -0 lines 0 comments Download

Dependent Patchsets:

Messages

Total messages: 32 (19 generated)
Shuhei Takahashi
hashimoto: PTAL all yusukes: PTAL chrome/browser/chromeos/arc/... mtomasz: PTAL chrome/browser/chromeos/fileapi/... tzik: PTAL storage/... jam: PTAL chrome/browser/platform_util_unittest.cc
4 years ago (2016-12-12 16:05:12 UTC) #8
jam
lgtm
4 years ago (2016-12-12 17:58:37 UTC) #9
Shuhei Takahashi
lhchavez: PTAL for chrome/browser/chromeos/arc yusukes: FYI
4 years ago (2016-12-13 01:18:20 UTC) #11
tzik
lgtm
4 years ago (2016-12-13 04:53:03 UTC) #12
mtomasz
chrome/browser/chromeos/fileapi/ lgtm
4 years ago (2016-12-13 07:50:04 UTC) #13
hashimoto
chrome/browser/chromeos/arc/fileapi/ lgtm https://codereview.chromium.org/2568033002/diff/1/chrome/browser/chromeos/arc/fileapi/arc_documents_provider_async_file_util.h File chrome/browser/chromeos/arc/fileapi/arc_documents_provider_async_file_util.h (right): https://codereview.chromium.org/2568033002/diff/1/chrome/browser/chromeos/arc/fileapi/arc_documents_provider_async_file_util.h#newcode93 chrome/browser/chromeos/arc/fileapi/arc_documents_provider_async_file_util.h:93: base::WeakPtrFactory<ArcDocumentsProviderAsyncFileUtil> weak_ptr_factory_; How about adding this when ...
4 years ago (2016-12-13 07:52:29 UTC) #14
Shuhei Takahashi
https://codereview.chromium.org/2568033002/diff/1/chrome/browser/chromeos/arc/fileapi/arc_documents_provider_async_file_util.h File chrome/browser/chromeos/arc/fileapi/arc_documents_provider_async_file_util.h (right): https://codereview.chromium.org/2568033002/diff/1/chrome/browser/chromeos/arc/fileapi/arc_documents_provider_async_file_util.h#newcode93 chrome/browser/chromeos/arc/fileapi/arc_documents_provider_async_file_util.h:93: base::WeakPtrFactory<ArcDocumentsProviderAsyncFileUtil> weak_ptr_factory_; On 2016/12/13 07:52:29, hashimoto wrote: > How ...
4 years ago (2016-12-13 10:27:47 UTC) #16
Yusuke Sato
lgtm w/ style comments https://codereview.chromium.org/2568033002/diff/20001/chrome/browser/chromeos/arc/fileapi/arc_documents_provider_async_file_util.cc File chrome/browser/chromeos/arc/fileapi/arc_documents_provider_async_file_util.cc (right): https://codereview.chromium.org/2568033002/diff/20001/chrome/browser/chromeos/arc/fileapi/arc_documents_provider_async_file_util.cc#newcode7 chrome/browser/chromeos/arc/fileapi/arc_documents_provider_async_file_util.cc:7: #include "base/bind.h" nit: unused? https://codereview.chromium.org/2568033002/diff/20001/chrome/browser/chromeos/arc/fileapi/arc_documents_provider_async_file_util.cc#newcode12 ...
4 years ago (2016-12-13 18:58:56 UTC) #20
Luis Héctor Chávez
Adding the correct lhchavez. lgtm with a nit, but can you also please s/Skelton/Skeleton/ (or ...
4 years ago (2016-12-13 19:10:51 UTC) #22
Shuhei Takahashi
Thanks for reviewing! Updated the description s/skelton/skeleton/g. https://codereview.chromium.org/2568033002/diff/20001/chrome/browser/chromeos/arc/fileapi/arc_documents_provider_async_file_util.cc File chrome/browser/chromeos/arc/fileapi/arc_documents_provider_async_file_util.cc (right): https://codereview.chromium.org/2568033002/diff/20001/chrome/browser/chromeos/arc/fileapi/arc_documents_provider_async_file_util.cc#newcode7 chrome/browser/chromeos/arc/fileapi/arc_documents_provider_async_file_util.cc:7: #include "base/bind.h" ...
4 years ago (2016-12-14 03:24:55 UTC) #24
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2568033002/40001
4 years ago (2016-12-14 03:25:33 UTC) #27
commit-bot: I haz the power
Committed patchset #3 (id:40001)
4 years ago (2016-12-14 04:37:07 UTC) #30
commit-bot: I haz the power
4 years ago (2016-12-14 04:39:34 UTC) #32
Message was sent while issue was closed.
Patchset 3 (id:??) landed as
https://crrev.com/f5df1e3fe0001e776729dafe7be76ad9f8096868
Cr-Commit-Position: refs/heads/master@{#438431}

Powered by Google App Engine
This is Rietveld 408576698