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

Issue 8499007: Add CrosDisksClient (Closed)

Created:
9 years, 1 month ago by hashimoto
Modified:
9 years, 1 month ago
Reviewers:
satorux1
CC:
chromium-reviews, stevenjb+watch_chromium.org, nkostylev+watch_chromium.org, davemoore+watch_chromium.org
Visibility:
Public.

Description

Add CrosDisksClient This patch is 1 of 3 splitted patches made from http://codereview.chromium.org/8386031 cros_disks_client.cc is made by mixing and refactoring chromeos_mount.cc of libcros and chrome/browser/chromeos/cros/mount_library.cc Added code is still not used. BUG=chromium-os:16556 TEST=build success Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=110045

Patch Set 1 #

Patch Set 2 : Add mock to gyp #

Total comments: 31

Patch Set 3 : Fix for review comments #

Patch Set 4 : Split a part of code into disk_mount_manager.cc/h #

Total comments: 48

Patch Set 5 : Move DiskMountManager to chrome/browser/chromeos/disks #

Patch Set 6 : Fix to please clang #

Total comments: 65

Patch Set 7 : Fix for review comments, rebased to ToT #

Patch Set 8 : Added comment, fix to compare strings in case sensitive way #

Unified diffs Side-by-side diffs Delta from patch set Stats (+2002 lines, -0 lines) Patch
A chrome/browser/chromeos/dbus/cros_disks_client.h View 1 2 3 4 5 6 1 chunk +226 lines, -0 lines 0 comments Download
A chrome/browser/chromeos/dbus/cros_disks_client.cc View 1 2 3 4 5 6 1 chunk +536 lines, -0 lines 0 comments Download
M chrome/browser/chromeos/dbus/dbus_thread_manager.h View 1 2 3 2 chunks +6 lines, -0 lines 0 comments Download
M chrome/browser/chromeos/dbus/dbus_thread_manager.cc View 1 2 3 4 chunks +10 lines, -0 lines 0 comments Download
A chrome/browser/chromeos/dbus/mock_cros_disks_client.h View 1 2 3 1 chunk +37 lines, -0 lines 0 comments Download
A chrome/browser/chromeos/dbus/mock_cros_disks_client.cc View 1 2 3 1 chunk +13 lines, -0 lines 0 comments Download
M chrome/browser/chromeos/dbus/mock_dbus_thread_manager.h View 1 2 3 4 4 chunks +6 lines, -0 lines 0 comments Download
M chrome/browser/chromeos/dbus/mock_dbus_thread_manager.cc View 1 2 3 4 5 6 3 chunks +4 lines, -0 lines 0 comments Download
A chrome/browser/chromeos/disks/disk_mount_manager.h View 1 2 3 4 5 6 1 chunk +250 lines, -0 lines 0 comments Download
A chrome/browser/chromeos/disks/disk_mount_manager.cc View 1 2 3 4 5 6 7 1 chunk +656 lines, -0 lines 0 comments Download
A chrome/browser/chromeos/disks/mock_disk_mount_manager.h View 1 2 3 4 5 6 1 chunk +81 lines, -0 lines 0 comments Download
A chrome/browser/chromeos/disks/mock_disk_mount_manager.cc View 1 2 3 4 5 6 1 chunk +169 lines, -0 lines 0 comments Download
M chrome/chrome_browser.gypi View 1 2 3 4 5 6 2 chunks +4 lines, -0 lines 0 comments Download
M chrome/chrome_tests.gypi View 1 2 3 4 5 6 2 chunks +4 lines, -0 lines 0 comments Download

Messages

Total messages: 13 (0 generated)
hashimoto
9 years, 1 month ago (2011-11-08 09:11:21 UTC) #1
satorux1
This is a great piece of code, but I have a relatively large request. The ...
9 years, 1 month ago (2011-11-08 18:07:22 UTC) #2
hashimoto
New patch set reflecting comments. Going to split cros_disks_client.cc in the next patch. http://codereview.chromium.org/8499007/diff/2001/chrome/browser/chromeos/dbus/cros_disks_client.cc File ...
9 years, 1 month ago (2011-11-09 02:33:25 UTC) #3
hashimoto
CrosDisksClient is renamed to DiskMountManager and CrosDisksDBusProxy is now named as CrosDisksClient to make it ...
9 years, 1 month ago (2011-11-09 06:53:35 UTC) #4
satorux1
Sorry for the belated response. I somehow didn't notice that the new version was uploaded ...
9 years, 1 month ago (2011-11-11 00:43:55 UTC) #5
hashimoto
New patch set http://codereview.chromium.org/8499007/diff/11005/chrome/browser/chromeos/dbus/cros_disks_client.cc File chrome/browser/chromeos/dbus/cros_disks_client.cc (right): http://codereview.chromium.org/8499007/diff/11005/chrome/browser/chromeos/dbus/cros_disks_client.cc#newcode41 chrome/browser/chromeos/dbus/cros_disks_client.cc:41: // It returns true when a ...
9 years, 1 month ago (2011-11-11 08:00:53 UTC) #6
satorux1
Looks pretty good, and almost there. I think almost all issues I pointed out are ...
9 years, 1 month ago (2011-11-11 19:01:47 UTC) #7
hashimoto
Thank you for your detailed review. I agree that this is a good chance to ...
9 years, 1 month ago (2011-11-14 13:52:44 UTC) #8
satorux1
LGTM with one request. Your thoughts on the error handling (using "!" prefix is ugly), ...
9 years, 1 month ago (2011-11-14 17:56:23 UTC) #9
hashimoto
New patch set. Going to commit this.
9 years, 1 month ago (2011-11-15 01:55:18 UTC) #10
hashimoto
http://codereview.chromium.org/8499007/diff/10023/chrome/browser/chromeos/disks/disk_mount_manager.cc File chrome/browser/chromeos/disks/disk_mount_manager.cc (right): http://codereview.chromium.org/8499007/diff/10023/chrome/browser/chromeos/disks/disk_mount_manager.cc#newcode88 chrome/browser/chromeos/disks/disk_mount_manager.cc:88: base::Bind(&DoNothing)); On 2011/11/14 17:56:23, satorux1 wrote: > On 2011/11/14 ...
9 years, 1 month ago (2011-11-15 02:23:55 UTC) #11
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/hashimoto@chromium.org/8499007/29003
9 years, 1 month ago (2011-11-15 04:06:22 UTC) #12
commit-bot: I haz the power
9 years, 1 month ago (2011-11-15 05:20:20 UTC) #13
Change committed as 110045

Powered by Google App Engine
This is Rietveld 408576698