| Index: components/sync/core/data_type_debug_info_listener.h
|
| diff --git a/components/sync/core/data_type_debug_info_listener.h b/components/sync/core/data_type_debug_info_listener.h
|
| deleted file mode 100644
|
| index 93c6a161612afe8f95e0084e71ef4bb779a28e4a..0000000000000000000000000000000000000000
|
| --- a/components/sync/core/data_type_debug_info_listener.h
|
| +++ /dev/null
|
| @@ -1,51 +0,0 @@
|
| -// Copyright (c) 2012 The Chromium Authors. All rights reserved.
|
| -// Use of this source code is governed by a BSD-style license that can be
|
| -// found in the LICENSE file.
|
| -
|
| -#ifndef COMPONENTS_SYNC_CORE_DATA_TYPE_DEBUG_INFO_LISTENER_H_
|
| -#define COMPONENTS_SYNC_CORE_DATA_TYPE_DEBUG_INFO_LISTENER_H_
|
| -
|
| -#include <vector>
|
| -
|
| -#include "components/sync/base/model_type.h"
|
| -#include "components/sync/core/data_type_association_stats.h"
|
| -
|
| -namespace syncer {
|
| -
|
| -struct DataTypeConfigurationStats {
|
| - DataTypeConfigurationStats();
|
| - DataTypeConfigurationStats(const DataTypeConfigurationStats& other);
|
| - ~DataTypeConfigurationStats();
|
| -
|
| - // The datatype that was configured.
|
| - ModelType model_type;
|
| -
|
| - // Waiting time before downloading starts.
|
| - base::TimeDelta download_wait_time;
|
| -
|
| - // Time spent on downloading data for first-sync data types.
|
| - base::TimeDelta download_time;
|
| -
|
| - // Waiting time for association of higher priority types to finish before
|
| - // asking association manager to associate.
|
| - base::TimeDelta association_wait_time_for_high_priority;
|
| -
|
| - // Types configured before this type.
|
| - ModelTypeSet high_priority_types_configured_before;
|
| - ModelTypeSet same_priority_types_configured_before;
|
| -
|
| - // Association stats.
|
| - DataTypeAssociationStats association_stats;
|
| -};
|
| -
|
| -// Interface for the sync internals to listen to external sync events.
|
| -class DataTypeDebugInfoListener {
|
| - public:
|
| - // Notify the listener that configuration of data types has completed.
|
| - virtual void OnDataTypeConfigureComplete(
|
| - const std::vector<DataTypeConfigurationStats>& configuration_stats) = 0;
|
| -};
|
| -
|
| -} // namespace syncer
|
| -
|
| -#endif // COMPONENTS_SYNC_CORE_DATA_TYPE_DEBUG_INFO_LISTENER_H_
|
|
|