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

Side by Side Diff: components/sync/engine/sync_status.h

Issue 2619763002: Expose local sync mode status in the chrome://sync-internals page. (Closed)
Patch Set: Created 3 years, 11 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
« no previous file with comments | « components/sync/driver/about_sync_util.cc ('k') | components/sync/engine_impl/all_status.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 COMPONENTS_SYNC_ENGINE_SYNC_STATUS_H_ 5 #ifndef COMPONENTS_SYNC_ENGINE_SYNC_STATUS_H_
6 #define COMPONENTS_SYNC_ENGINE_SYNC_STATUS_H_ 6 #define COMPONENTS_SYNC_ENGINE_SYNC_STATUS_H_
7 7
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 89
90 // The unique identifier for the invalidation client. 90 // The unique identifier for the invalidation client.
91 std::string invalidator_client_id; 91 std::string invalidator_client_id;
92 92
93 // Counters grouped by model type 93 // Counters grouped by model type
94 std::vector<int> num_entries_by_type; 94 std::vector<int> num_entries_by_type;
95 std::vector<int> num_to_delete_entries_by_type; 95 std::vector<int> num_to_delete_entries_by_type;
96 96
97 // Time of next retry if sync scheduler is throttled or in backoff. 97 // Time of next retry if sync scheduler is throttled or in backoff.
98 base::Time retry_time; 98 base::Time retry_time;
99
100 // The location of the local sync backend db file if local sync is enabled.
101 std::string local_sync_folder;
99 }; 102 };
100 103
101 } // namespace syncer 104 } // namespace syncer
102 105
103 #endif // COMPONENTS_SYNC_ENGINE_SYNC_STATUS_H_ 106 #endif // COMPONENTS_SYNC_ENGINE_SYNC_STATUS_H_
OLDNEW
« no previous file with comments | « components/sync/driver/about_sync_util.cc ('k') | components/sync/engine_impl/all_status.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698