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

Side by Side Diff: sync/internal_api/public/sessions/model_neutral_state.h

Issue 10696087: [Sync] Move ModelType and related classes to 'syncer' namespace (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: sort headers, update copyrights 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 #ifndef SYNC_SESSIONS_MODEL_NEUTRAL_STATE_H 5 #ifndef SYNC_SESSIONS_MODEL_NEUTRAL_STATE_H
6 #define SYNC_SESSIONS_MODEL_NEUTRAL_STATE_H 6 #define SYNC_SESSIONS_MODEL_NEUTRAL_STATE_H
7 #pragma once 7 #pragma once
8 8
9 #include "base/basictypes.h" 9 #include "base/basictypes.h"
10 #include "sync/internal_api/public/util/syncer_error.h" 10 #include "sync/internal_api/public/util/syncer_error.h"
11 #include "sync/protocol/sync.pb.h" 11 #include "sync/protocol/sync.pb.h"
12 #include "sync/protocol/sync_protocol_error.h" 12 #include "sync/protocol/sync_protocol_error.h"
13 13
14 namespace syncer { 14 namespace syncer {
15 namespace sessions { 15 namespace sessions {
16 16
17 // Grouping of all state that applies to all model types. Note that some 17 // Grouping of all state that applies to all model types. Note that some
18 // components of the global grouping can internally implement finer grained 18 // components of the global grouping can internally implement finer grained
19 // scope control, but the top level entity is still a singleton with respect to 19 // scope control, but the top level entity is still a singleton with respect to
20 // model types. 20 // model types.
21 struct ModelNeutralState { 21 struct ModelNeutralState {
22 ModelNeutralState(); 22 ModelNeutralState();
23 ~ModelNeutralState(); 23 ~ModelNeutralState();
24 24
25 // We GetUpdates for some combination of types at once. 25 // We GetUpdates for some combination of types at once.
26 // requested_update_types stores the set of types which were requested. 26 // requested_update_types stores the set of types which were requested.
27 syncable::ModelTypeSet updates_request_types; 27 syncer::ModelTypeSet updates_request_types;
28 28
29 sync_pb::ClientToServerResponse updates_response; 29 sync_pb::ClientToServerResponse updates_response;
30 30
31 int num_successful_commits; 31 int num_successful_commits;
32 32
33 // This is needed for monitoring extensions activity. 33 // This is needed for monitoring extensions activity.
34 int num_successful_bookmark_commits; 34 int num_successful_bookmark_commits;
35 35
36 // Download event counters. 36 // Download event counters.
37 int num_updates_downloaded_total; 37 int num_updates_downloaded_total;
38 int num_tombstone_updates_downloaded_total; 38 int num_tombstone_updates_downloaded_total;
39 int num_reflected_updates_downloaded_total; 39 int num_reflected_updates_downloaded_total;
40 40
41 // If the syncer encountered a MIGRATION_DONE code, these are the types that 41 // If the syncer encountered a MIGRATION_DONE code, these are the types that
42 // the client must now "migrate", by purging and re-downloading all updates. 42 // the client must now "migrate", by purging and re-downloading all updates.
43 syncable::ModelTypeSet types_needing_local_migration; 43 syncer::ModelTypeSet types_needing_local_migration;
44 44
45 // Overwrites due to conflict resolution counters. 45 // Overwrites due to conflict resolution counters.
46 int num_local_overwrites; 46 int num_local_overwrites;
47 int num_server_overwrites; 47 int num_server_overwrites;
48 48
49 // Any protocol errors that we received during this sync session. 49 // Any protocol errors that we received during this sync session.
50 SyncProtocolError sync_protocol_error; 50 SyncProtocolError sync_protocol_error;
51 51
52 // Records the most recent results of PostCommit and GetUpdates commands. 52 // Records the most recent results of PostCommit and GetUpdates commands.
53 SyncerError last_download_updates_result; 53 SyncerError last_download_updates_result;
(...skipping 11 matching lines...) Expand all
65 // Number of changes remaining, according to the server. 65 // Number of changes remaining, according to the server.
66 // Take it as an estimate unless it's value is zero, in which case there 66 // Take it as an estimate unless it's value is zero, in which case there
67 // really is nothing more to download. 67 // really is nothing more to download.
68 int64 num_server_changes_remaining; 68 int64 num_server_changes_remaining;
69 }; 69 };
70 70
71 } // namespace sessions 71 } // namespace sessions
72 } // namespace syncer 72 } // namespace syncer
73 73
74 #endif // SYNC_SESSIONS_MODEL_NEUTRAL_STATE_H_ 74 #endif // SYNC_SESSIONS_MODEL_NEUTRAL_STATE_H_
OLDNEW
« no previous file with comments | « sync/internal_api/public/read_node.h ('k') | sync/internal_api/public/sessions/sync_session_snapshot.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698