1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "chrome/common/media_galleries/iphoto_library.h"
14 Photo::Photo(uint64 id
,
15 const base::FilePath
& location
,
16 const base::FilePath
& original_location
)
19 original_location(original_location
) {
22 bool Photo::operator<(const Photo
& other
) const {
28 Library::Library(const Albums
& albums
,
29 const std::set
<Photo
>& all_photos
)
31 all_photos(all_photos
) {}
33 Library::~Library() {}