| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 #ifndef COMPONENTS_READING_LIST_READING_LIST_ENTRY_H_ | 5 #ifndef COMPONENTS_READING_LIST_IOS_READING_LIST_ENTRY_H_ |
| 6 #define COMPONENTS_READING_LIST_READING_LIST_ENTRY_H_ | 6 #define COMPONENTS_READING_LIST_IOS_READING_LIST_ENTRY_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/files/file_path.h" | 10 #include "base/files/file_path.h" |
| 11 #include "base/macros.h" | 11 #include "base/macros.h" |
| 12 #include "base/time/time.h" | 12 #include "base/time/time.h" |
| 13 #include "net/base/backoff_entry.h" | 13 #include "net/base/backoff_entry.h" |
| 14 #include "url/gurl.h" | 14 #include "url/gurl.h" |
| 15 | 15 |
| 16 namespace reading_list { | 16 namespace reading_list { |
| (...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 130 | 130 |
| 131 // These value are in microseconds since Jan 1st 1970. They are used for | 131 // These value are in microseconds since Jan 1st 1970. They are used for |
| 132 // sorting the entries from the database. They are kept in int64_t to avoid | 132 // sorting the entries from the database. They are kept in int64_t to avoid |
| 133 // conversion on each save/read event. | 133 // conversion on each save/read event. |
| 134 int64_t creation_time_us_; | 134 int64_t creation_time_us_; |
| 135 int64_t update_time_us_; | 135 int64_t update_time_us_; |
| 136 | 136 |
| 137 DISALLOW_COPY_AND_ASSIGN(ReadingListEntry); | 137 DISALLOW_COPY_AND_ASSIGN(ReadingListEntry); |
| 138 }; | 138 }; |
| 139 | 139 |
| 140 #endif // COMPONENTS_READING_LIST_READING_LIST_ENTRY_H_ | 140 #endif // COMPONENTS_READING_LIST_IOS_READING_LIST_ENTRY_H_ |
| OLD | NEW |