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

Side by Side Diff: components/reading_list/ios/reading_list_entry.h

Issue 2511723002: Enable RL sync by default on iOS (Closed)
Patch Set: create ios and core directories Created 4 years 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 unified diff | Download patch
OLDNEW
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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698