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

Issue 547313002: [fsp] Use auto generated methods for generating dictionaries. (Closed)

Created:
6 years, 3 months ago by mtomasz
Modified:
6 years, 3 months ago
Reviewers:
yoshiki, Yoyo Zhou
CC:
chromium-reviews, extensions-reviews_chromium.org, nkostylev+watch_chromium.org, oshima+watch_chromium.org, chromium-apps-reviews_chromium.org, stevenjb+watch_chromium.org, davemoore+watch_chromium.org
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Project:
chromium
Visibility:
Public.

Description

[fsp] Use auto generated methods for generating dictionaries. Instead of manually constructing base::Value for event invocation, we should use code generated from IDL just designed for that. TEST=browser_test, unit_tests: *FileSystemProvider* BUG=403673 Committed: https://crrev.com/091a0ad7d6a97b503e91389588eb544da4946e33 Cr-Commit-Position: refs/heads/master@{#294502}

Patch Set 1 #

Total comments: 4

Patch Set 2 : Rebased. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+292 lines, -313 lines) Patch
M chrome/browser/chromeos/file_system_provider/operations/abort.cc View 1 chunk +7 lines, -3 lines 0 comments Download
M chrome/browser/chromeos/file_system_provider/operations/abort_unittest.cc View 1 2 chunks +9 lines, -14 lines 0 comments Download
M chrome/browser/chromeos/file_system_provider/operations/close_file.cc View 1 chunk +8 lines, -3 lines 0 comments Download
M chrome/browser/chromeos/file_system_provider/operations/close_file_unittest.cc View 1 2 chunks +9 lines, -13 lines 0 comments Download
M chrome/browser/chromeos/file_system_provider/operations/copy_entry.cc View 1 chunk +9 lines, -4 lines 0 comments Download
M chrome/browser/chromeos/file_system_provider/operations/copy_entry_unittest.cc View 1 2 chunks +10 lines, -17 lines 0 comments Download
M chrome/browser/chromeos/file_system_provider/operations/create_directory.cc View 1 chunk +13 lines, -7 lines 0 comments Download
M chrome/browser/chromeos/file_system_provider/operations/create_directory_unittest.cc View 1 2 chunks +11 lines, -17 lines 0 comments Download
M chrome/browser/chromeos/file_system_provider/operations/create_file.cc View 1 chunk +8 lines, -3 lines 0 comments Download
M chrome/browser/chromeos/file_system_provider/operations/create_file_unittest.cc View 1 2 chunks +10 lines, -13 lines 0 comments Download
M chrome/browser/chromeos/file_system_provider/operations/delete_entry.cc View 1 chunk +9 lines, -4 lines 0 comments Download
M chrome/browser/chromeos/file_system_provider/operations/delete_entry_unittest.cc View 1 2 chunks +11 lines, -17 lines 0 comments Download
M chrome/browser/chromeos/file_system_provider/operations/get_metadata.cc View 1 chunk +10 lines, -6 lines 0 comments Download
M chrome/browser/chromeos/file_system_provider/operations/get_metadata_unittest.cc View 1 2 chunks +11 lines, -17 lines 0 comments Download
M chrome/browser/chromeos/file_system_provider/operations/move_entry.cc View 1 chunk +9 lines, -4 lines 0 comments Download
M chrome/browser/chromeos/file_system_provider/operations/move_entry_unittest.cc View 1 2 chunks +10 lines, -17 lines 0 comments Download
M chrome/browser/chromeos/file_system_provider/operations/open_file.cc View 1 chunk +11 lines, -11 lines 0 comments Download
M chrome/browser/chromeos/file_system_provider/operations/open_file_unittest.cc View 1 2 chunks +11 lines, -20 lines 0 comments Download
M chrome/browser/chromeos/file_system_provider/operations/operation.h View 1 2 chunks +3 lines, -4 lines 0 comments Download
M chrome/browser/chromeos/file_system_provider/operations/operation.cc View 1 chunk +1 line, -7 lines 0 comments Download
M chrome/browser/chromeos/file_system_provider/operations/read_directory.cc View 1 chunk +13 lines, -6 lines 0 comments Download
M chrome/browser/chromeos/file_system_provider/operations/read_directory_unittest.cc View 1 2 chunks +10 lines, -13 lines 0 comments Download
M chrome/browser/chromeos/file_system_provider/operations/read_file.cc View 1 chunk +11 lines, -5 lines 0 comments Download
M chrome/browser/chromeos/file_system_provider/operations/read_file_unittest.cc View 1 2 chunks +11 lines, -21 lines 0 comments Download
M chrome/browser/chromeos/file_system_provider/operations/truncate.cc View 1 chunk +9 lines, -4 lines 0 comments Download
M chrome/browser/chromeos/file_system_provider/operations/truncate_unittest.cc View 1 2 chunks +10 lines, -17 lines 0 comments Download
M chrome/browser/chromeos/file_system_provider/operations/unmount.cc View 1 chunk +8 lines, -2 lines 0 comments Download
M chrome/browser/chromeos/file_system_provider/operations/unmount_unittest.cc View 2 chunks +8 lines, -9 lines 0 comments Download
M chrome/browser/chromeos/file_system_provider/operations/write_file.cc View 1 chunk +13 lines, -5 lines 0 comments Download
M chrome/browser/chromeos/file_system_provider/operations/write_file_unittest.cc View 1 2 chunks +11 lines, -25 lines 0 comments Download
M chrome/common/extensions/api/file_system_provider.idl View 1 chunk +8 lines, -5 lines 0 comments Download

Messages

Total messages: 24 (9 generated)
mtomasz
@yoshiki: PTAL. This is a mechanical change. Thanks.
6 years, 3 months ago (2014-09-08 08:32:28 UTC) #2
yoshiki
lgtm
6 years, 3 months ago (2014-09-08 09:31:47 UTC) #3
yoshiki
Sorry for a few nitpicks after lgtm. https://codereview.chromium.org/547313002/diff/1/chrome/browser/chromeos/file_system_provider/operations/abort.cc File chrome/browser/chromeos/file_system_provider/operations/abort.cc (right): https://codereview.chromium.org/547313002/diff/1/chrome/browser/chromeos/file_system_provider/operations/abort.cc#newcode29 chrome/browser/chromeos/file_system_provider/operations/abort.cc:29: using extensions::api::file_system_provider::AbortRequestedOptions; ...
6 years, 3 months ago (2014-09-08 09:36:13 UTC) #4
mtomasz
https://codereview.chromium.org/547313002/diff/1/chrome/browser/chromeos/file_system_provider/operations/abort.cc File chrome/browser/chromeos/file_system_provider/operations/abort.cc (right): https://codereview.chromium.org/547313002/diff/1/chrome/browser/chromeos/file_system_provider/operations/abort.cc#newcode29 chrome/browser/chromeos/file_system_provider/operations/abort.cc:29: using extensions::api::file_system_provider::AbortRequestedOptions; On 2014/09/08 09:36:13, yoshiki wrote: > nit: ...
6 years, 3 months ago (2014-09-09 01:07:08 UTC) #5
mtomasz
On 2014/09/09 01:07:08, mtomasz wrote: > https://codereview.chromium.org/547313002/diff/1/chrome/browser/chromeos/file_system_provider/operations/abort.cc > File chrome/browser/chromeos/file_system_provider/operations/abort.cc (right): > > https://codereview.chromium.org/547313002/diff/1/chrome/browser/chromeos/file_system_provider/operations/abort.cc#newcode29 > ...
6 years, 3 months ago (2014-09-10 03:09:00 UTC) #8
mtomasz
On 2014/09/10 03:09:00, mtomasz wrote: > On 2014/09/09 01:07:08, mtomasz wrote: > > > https://codereview.chromium.org/547313002/diff/1/chrome/browser/chromeos/file_system_provider/operations/abort.cc ...
6 years, 3 months ago (2014-09-11 07:06:04 UTC) #9
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patchset/547313002/1
6 years, 3 months ago (2014-09-11 07:07:06 UTC) #11
commit-bot: I haz the power
Try jobs failed on following builders: android_clang_dbg_recipe on tryserver.chromium.linux (http://build.chromium.org/p/tryserver.chromium.linux/builders/android_clang_dbg_recipe/builds/3677) ios_rel_device_ninja on tryserver.chromium.mac (http://build.chromium.org/p/tryserver.chromium.mac/builders/ios_rel_device_ninja/builds/9492) win8_chromium_rel ...
6 years, 3 months ago (2014-09-11 07:10:33 UTC) #13
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patchset/547313002/20001
6 years, 3 months ago (2014-09-11 07:40:30 UTC) #15
commit-bot: I haz the power
Try jobs failed on following builders: chromium_presubmit on tryserver.chromium.linux (http://build.chromium.org/p/tryserver.chromium.linux/builders/chromium_presubmit/builds/10252)
6 years, 3 months ago (2014-09-11 08:05:52 UTC) #17
mtomasz
@yoz: PTAL at IDL. Thanks.
6 years, 3 months ago (2014-09-11 08:10:02 UTC) #19
Yoyo Zhou
IDL LGTM
6 years, 3 months ago (2014-09-11 17:41:17 UTC) #20
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patchset/547313002/20001
6 years, 3 months ago (2014-09-11 23:22:21 UTC) #22
commit-bot: I haz the power
Committed patchset #2 (id:20001) as e9fe05372e411a768c14e2e5c9cfa48d3b75132c
6 years, 3 months ago (2014-09-12 00:36:35 UTC) #23
commit-bot: I haz the power
6 years, 3 months ago (2014-09-12 00:38:50 UTC) #24
Message was sent while issue was closed.
Patchset 2 (id:??) landed as
https://crrev.com/091a0ad7d6a97b503e91389588eb544da4946e33
Cr-Commit-Position: refs/heads/master@{#294502}

Powered by Google App Engine
This is Rietveld 408576698