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

Side by Side Diff: sync/internal_api/public/data_type_debug_info_listener.h

Issue 2130453004: [Sync] Move //sync to //components/sync. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 4 years, 4 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
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef SYNC_INTERNAL_API_PUBLIC_DATA_TYPE_DEBUG_INFO_LISTENER_H_
6 #define SYNC_INTERNAL_API_PUBLIC_DATA_TYPE_DEBUG_INFO_LISTENER_H_
7
8 #include <vector>
9
10 #include "sync/internal_api/public/base/model_type.h"
11 #include "sync/internal_api/public/data_type_association_stats.h"
12
13 namespace syncer {
14
15 struct SYNC_EXPORT DataTypeConfigurationStats {
16 DataTypeConfigurationStats();
17 DataTypeConfigurationStats(const DataTypeConfigurationStats& other);
18 ~DataTypeConfigurationStats();
19
20 // The datatype that was configured.
21 ModelType model_type;
22
23 // Waiting time before downloading starts.
24 base::TimeDelta download_wait_time;
25
26 // Time spent on downloading data for first-sync data types.
27 base::TimeDelta download_time;
28
29 // Waiting time for association of higher priority types to finish before
30 // asking association manager to associate.
31 base::TimeDelta association_wait_time_for_high_priority;
32
33 // Types configured before this type.
34 ModelTypeSet high_priority_types_configured_before;
35 ModelTypeSet same_priority_types_configured_before;
36
37 // Association stats.
38 DataTypeAssociationStats association_stats;
39 };
40
41 // Interface for the sync internals to listen to external sync events.
42 class DataTypeDebugInfoListener {
43 public:
44 // Notify the listener that configuration of data types has completed.
45 virtual void OnDataTypeConfigureComplete(
46 const std::vector<DataTypeConfigurationStats>& configuration_stats) = 0;
47 };
48
49 } // namespace syncer
50
51 #endif // SYNC_INTERNAL_API_PUBLIC_DATA_TYPE_DEBUG_INFO_LISTENER_H_
OLDNEW
« no previous file with comments | « sync/internal_api/public/data_type_association_stats.cc ('k') | sync/internal_api/public/data_type_debug_info_listener.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698