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

Side by Side Diff: sync/internal_api/public/sessions/sync_session_snapshot.cc

Issue 10690071: [Sync] Move model_type* from syncable/ to base/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 5 months 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 "sync/internal_api/public/sessions/sync_session_snapshot.h" 5 #include "sync/internal_api/public/sessions/sync_session_snapshot.h"
6 6
7 #include "base/json/json_writer.h" 7 #include "base/json/json_writer.h"
8 #include "base/memory/scoped_ptr.h"
8 #include "base/values.h" 9 #include "base/values.h"
9 10
10 namespace syncer { 11 namespace syncer {
11 namespace sessions { 12 namespace sessions {
12 13
13 SyncSessionSnapshot::SyncSessionSnapshot() 14 SyncSessionSnapshot::SyncSessionSnapshot()
14 : is_share_usable_(false), 15 : is_share_usable_(false),
15 has_more_to_sync_(false), 16 has_more_to_sync_(false),
16 is_silenced_(false), 17 is_silenced_(false),
17 num_encryption_conflicts_(0), 18 num_encryption_conflicts_(0),
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after
164 base::Time SyncSessionSnapshot::sync_start_time() const { 165 base::Time SyncSessionSnapshot::sync_start_time() const {
165 return sync_start_time_; 166 return sync_start_time_;
166 } 167 }
167 168
168 bool SyncSessionSnapshot::retry_scheduled() const { 169 bool SyncSessionSnapshot::retry_scheduled() const {
169 return retry_scheduled_; 170 return retry_scheduled_;
170 } 171 }
171 172
172 } // namespace sessions 173 } // namespace sessions
173 } // namespace syncer 174 } // namespace syncer
OLDNEW
« no previous file with comments | « sync/internal_api/public/sessions/sync_session_snapshot.h ('k') | sync/internal_api/public/sessions/sync_source_info.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698