| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chrome/utility/media_galleries/picasa_album_table_reader.h" | 5 #include "chrome/utility/media_galleries/picasa_album_table_reader.h" |
| 6 | 6 |
| 7 #include <algorithm> | 7 #include <algorithm> |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/path_service.h" | |
| 11 #include "base/strings/string_util.h" | 10 #include "base/strings/string_util.h" |
| 12 #include "base/strings/utf_string_conversions.h" | 11 #include "base/strings/utf_string_conversions.h" |
| 13 #include "chrome/common/media_galleries/pmp_constants.h" | 12 #include "chrome/common/media_galleries/pmp_constants.h" |
| 14 #include "chrome/utility/media_galleries/pmp_column_reader.h" | 13 #include "chrome/utility/media_galleries/pmp_column_reader.h" |
| 15 | 14 |
| 16 namespace picasa { | 15 namespace picasa { |
| 17 | 16 |
| 18 namespace { | 17 namespace { |
| 19 | 18 |
| 20 // |variant_time| is specified as the number of days from Dec 30, 1899. | 19 // |variant_time| is specified as the number of days from Dec 30, 1899. |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 107 | 106 |
| 108 folders_.push_back(AlbumInfo(name, timestamp, uid, path)); | 107 folders_.push_back(AlbumInfo(name, timestamp, uid, path)); |
| 109 } | 108 } |
| 110 } | 109 } |
| 111 | 110 |
| 112 initialized_ = true; | 111 initialized_ = true; |
| 113 return true; | 112 return true; |
| 114 } | 113 } |
| 115 | 114 |
| 116 } // namespace picasa | 115 } // namespace picasa |
| OLD | NEW |