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

Unified Diff: chrome/browser/chromeos/cros/mount_library.h

Issue 7706028: This is UI side unreadable device support. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: corrected strings + added mocks + style in js Created 9 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/chromeos/cros/mount_library.h
diff --git a/chrome/browser/chromeos/cros/mount_library.h b/chrome/browser/chromeos/cros/mount_library.h
index 688c8b1848b18545c0332506cf5e7d955f3d98db..bd25cdbecbc042ef57b3dafa450aa0dab53bfbb3 100644
--- a/chrome/browser/chromeos/cros/mount_library.h
+++ b/chrome/browser/chromeos/cros/mount_library.h
@@ -135,11 +135,14 @@ class MountLibrary {
std::string source_path;
std::string mount_path;
MountType mount_type;
+ std::string special_data;
- MountPointInfo(const char* source, const char* mount, const MountType type)
+ MountPointInfo(const char* source, const char* mount, const MountType type,
+ const char* special)
tbarzic 2011/08/24 03:59:44 special data seems a bit vague.. maybe something l
sidor 2011/08/24 04:26:06 So the idea is that there are some special conditi
: source_path(source ? source : ""),
mount_path(mount ? mount : ""),
- mount_type(type) {
+ mount_type(type),
+ special_data(special ? special : "") {
}
};
@@ -155,7 +158,7 @@ class MountLibrary {
virtual void DiskChanged(MountLibraryEventType event,
const Disk* disk) = 0;
virtual void DeviceChanged(MountLibraryEventType event,
- const std::string& device_path ) = 0;
+ const std::string& device_path) = 0;
virtual void MountCompleted(MountEvent event_type,
MountError error_code,
const MountPointInfo& mount_info) = 0;

Powered by Google App Engine
This is Rietveld 408576698