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

Unified Diff: chrome/common/media_galleries/iphoto_library.cc

Issue 52093003: [MediaGalleries] iPhoto: Add original file field to the parser. Dedupe album names. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 7 years, 1 month 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/common/media_galleries/iphoto_library.cc
diff --git a/chrome/common/media_galleries/iphoto_library.cc b/chrome/common/media_galleries/iphoto_library.cc
index 2d7eefd4dd049b2b573317dfd1f2609f3b8b4d93..7c580ddd3ec2fd7ba1310e2a1c2559b5b8c59080 100644
--- a/chrome/common/media_galleries/iphoto_library.cc
+++ b/chrome/common/media_galleries/iphoto_library.cc
@@ -11,9 +11,12 @@ Photo::Photo()
: id(0) {
}
-Photo::Photo(uint64 id, const base::FilePath& location)
+Photo::Photo(uint64 id,
+ const base::FilePath& location,
+ const base::FilePath& original_location)
: id(id),
- location(location) {
+ location(location),
+ original_location(original_location) {
}
bool Photo::operator<(const Photo& other) const {
« no previous file with comments | « chrome/common/media_galleries/iphoto_library.h ('k') | chrome/utility/media_galleries/iphoto_library_parser.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698