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

Issue 24030002: Adds callbacks to notify progress into Copy's API. (Closed)

Created:
7 years, 3 months ago by hidehiko
Modified:
7 years, 3 months ago
Reviewers:
kinuko, kinaba
CC:
chromium-reviews, extensions-reviews_chromium.org, jam, nkostylev+watch_chromium.org, vandebo (ex-Chrome), Lei Zhang, tzik+watch_chromium.org, Greg Billock, joi+watch-content_chromium.org, tommycli, rginda+watch_chromium.org, darin-cc_chromium.org, oshima+watch_chromium.org, nhiroki+watch_chromium.org, chromium-apps-reviews_chromium.org, kinuko+watch, stevenjb+watch_chromium.org, davemoore+watch_chromium.org
Visibility:
Public.

Description

Adds callbacks to notify progress into Copy's API. Copy operation will support progress update. This CL adds the callbacks to report the progress update. BUG=278038 TEST=Ran unit_tests Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=222024

Patch Set 1 #

Total comments: 4

Patch Set 2 : #

Total comments: 4

Patch Set 3 : Rebase #

Patch Set 4 : #

Unified diffs Side-by-side diffs Delta from patch set Stats (+172 lines, -21 lines) Patch
M chrome/browser/chromeos/extensions/file_manager/private_api_file_system.cc View 1 2 1 chunk +1 line, -0 lines 0 comments Download
M chrome/browser/media_galleries/fileapi/native_media_file_util_unittest.cc View 2 chunks +6 lines, -2 lines 0 comments Download
M chrome/browser/sync_file_system/local/canned_syncable_file_system.cc View 1 2 1 chunk +3 lines, -1 line 0 comments Download
M chrome/browser/sync_file_system/local/syncable_file_operation_runner_unittest.cc View 1 2 2 chunks +2 lines, -0 lines 0 comments Download
M chrome/browser/sync_file_system/local/syncable_file_system_operation.h View 2 chunks +2 lines, -0 lines 0 comments Download
M chrome/browser/sync_file_system/local/syncable_file_system_operation.cc View 1 2 3 chunks +4 lines, -2 lines 0 comments Download
M content/browser/fileapi/fileapi_message_filter.cc View 1 2 1 chunk +1 line, -0 lines 0 comments Download
M webkit/browser/fileapi/async_file_test_helper.cc View 1 chunk +2 lines, -1 line 0 comments Download
M webkit/browser/fileapi/copy_or_move_operation_delegate.cc View 1 chunk +4 lines, -1 line 0 comments Download
M webkit/browser/fileapi/file_system_operation.h View 1 2 5 chunks +92 lines, -0 lines 0 comments Download
M webkit/browser/fileapi/file_system_operation_impl.h View 1 2 2 chunks +2 lines, -0 lines 0 comments Download
M webkit/browser/fileapi/file_system_operation_impl.cc View 1 2 2 chunks +10 lines, -3 lines 0 comments Download
M webkit/browser/fileapi/file_system_operation_impl_unittest.cc View 14 chunks +32 lines, -9 lines 0 comments Download
M webkit/browser/fileapi/file_system_operation_runner.h View 1 2 3 4 chunks +7 lines, -0 lines 0 comments Download
M webkit/browser/fileapi/file_system_operation_runner.cc View 1 2 4 chunks +4 lines, -2 lines 0 comments Download

Messages

Total messages: 10 (0 generated)
hidehiko
Thank you for your review in advance, - hidehiko
7 years, 3 months ago (2013-09-06 08:38:58 UTC) #1
kinuko
Looks good, I have a high-level question. https://codereview.chromium.org/24030002/diff/1/webkit/browser/fileapi/file_system_operation.h File webkit/browser/fileapi/file_system_operation.h (right): https://codereview.chromium.org/24030002/diff/1/webkit/browser/fileapi/file_system_operation.h#newcode182 webkit/browser/fileapi/file_system_operation.h:182: typedef base::Callback<void(int64 ...
7 years, 3 months ago (2013-09-06 09:55:25 UTC) #2
hidehiko
Thank you for your review. https://codereview.chromium.org/24030002/diff/1/webkit/browser/fileapi/file_system_operation.h File webkit/browser/fileapi/file_system_operation.h (right): https://codereview.chromium.org/24030002/diff/1/webkit/browser/fileapi/file_system_operation.h#newcode182 webkit/browser/fileapi/file_system_operation.h:182: typedef base::Callback<void(int64 size)> CopyFileProgressCallback; ...
7 years, 3 months ago (2013-09-06 10:06:15 UTC) #3
kinuko
https://codereview.chromium.org/24030002/diff/1/webkit/browser/fileapi/file_system_operation.h File webkit/browser/fileapi/file_system_operation.h (right): https://codereview.chromium.org/24030002/diff/1/webkit/browser/fileapi/file_system_operation.h#newcode182 webkit/browser/fileapi/file_system_operation.h:182: typedef base::Callback<void(int64 size)> CopyFileProgressCallback; On 2013/09/06 10:06:16, hidehiko wrote: ...
7 years, 3 months ago (2013-09-09 03:46:30 UTC) #4
hidehiko
PTAL? https://codereview.chromium.org/24030002/diff/1/webkit/browser/fileapi/file_system_operation.h File webkit/browser/fileapi/file_system_operation.h (right): https://codereview.chromium.org/24030002/diff/1/webkit/browser/fileapi/file_system_operation.h#newcode182 webkit/browser/fileapi/file_system_operation.h:182: typedef base::Callback<void(int64 size)> CopyFileProgressCallback; On 2013/09/09 03:46:31, kinuko ...
7 years, 3 months ago (2013-09-09 04:48:14 UTC) #5
kinuko
Ok, lgtm https://codereview.chromium.org/24030002/diff/7001/webkit/browser/fileapi/file_system_operation_runner.h File webkit/browser/fileapi/file_system_operation_runner.h (right): https://codereview.chromium.org/24030002/diff/7001/webkit/browser/fileapi/file_system_operation_runner.h#newcode68 webkit/browser/fileapi/file_system_operation_runner.h:68: // |dest_url| as needed. Can you add ...
7 years, 3 months ago (2013-09-09 06:47:17 UTC) #6
kinaba
lgtm
7 years, 3 months ago (2013-09-09 08:27:52 UTC) #7
hidehiko
Thank you for your review. Sending to CQ. https://codereview.chromium.org/24030002/diff/7001/webkit/browser/fileapi/file_system_operation_runner.h File webkit/browser/fileapi/file_system_operation_runner.h (right): https://codereview.chromium.org/24030002/diff/7001/webkit/browser/fileapi/file_system_operation_runner.h#newcode68 webkit/browser/fileapi/file_system_operation_runner.h:68: // ...
7 years, 3 months ago (2013-09-09 11:49:54 UTC) #8
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/hidehiko@chromium.org/24030002/19001
7 years, 3 months ago (2013-09-09 11:50:08 UTC) #9
commit-bot: I haz the power
7 years, 3 months ago (2013-09-09 14:18:55 UTC) #10
Message was sent while issue was closed.
Change committed as 222024

Powered by Google App Engine
This is Rietveld 408576698