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/browser/media_galleries/fileapi/picasa/picasa_album_table_reade
r.h" | 5 #include "chrome/browser/media_galleries/fileapi/picasa/picasa_album_table_reade
r.h" |
6 | 6 |
7 #include <vector> | 7 #include <vector> |
8 | 8 |
9 #include "base/path_service.h" | 9 #include "base/path_service.h" |
10 #include "base/string_util.h" | 10 #include "base/string_util.h" |
11 #include "base/utf_string_conversions.h" | 11 #include "base/strings/utf_string_conversions.h" |
12 #include "chrome/browser/media_galleries/fileapi/picasa/pmp_column_reader.h" | 12 #include "chrome/browser/media_galleries/fileapi/picasa/pmp_column_reader.h" |
13 #include "chrome/browser/media_galleries/fileapi/picasa/pmp_constants.h" | 13 #include "chrome/browser/media_galleries/fileapi/picasa/pmp_constants.h" |
14 #include "chrome/browser/media_galleries/fileapi/picasa/pmp_table_reader.h" | 14 #include "chrome/browser/media_galleries/fileapi/picasa/pmp_table_reader.h" |
15 | 15 |
16 namespace picasa { | 16 namespace picasa { |
17 | 17 |
18 namespace { | 18 namespace { |
19 | 19 |
20 // |variant_time| is specified as the number of days from Dec 30, 1899. | 20 // |variant_time| is specified as the number of days from Dec 30, 1899. |
21 base::Time TimeFromMicrosoftVariantTime(double variant_time) { | 21 base::Time TimeFromMicrosoftVariantTime(double variant_time) { |
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
118 break; | 118 break; |
119 } | 119 } |
120 } | 120 } |
121 } | 121 } |
122 | 122 |
123 initialized_ = true; | 123 initialized_ = true; |
124 return true; | 124 return true; |
125 } | 125 } |
126 | 126 |
127 } // namespace picasa | 127 } // namespace picasa |
OLD | NEW |