[M120 Migration][VD] Enable direct rendering for TVPlus
[platform/framework/web/chromium-efl.git] / components / metrics / unsent_log_store_metrics.cc
1 // Copyright 2020 The Chromium Authors
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "components/metrics/unsent_log_store_metrics.h"
6
7 namespace metrics {
8
9 // static
10 BASE_FEATURE(kRecordLastUnsentLogMetadataMetrics,
11              "RecordLastUnsentLogMetadataMetrics",
12              base::FEATURE_DISABLED_BY_DEFAULT);
13
14 UnsentLogStoreMetrics::UnsentLogStoreMetrics() = default;
15 UnsentLogStoreMetrics::~UnsentLogStoreMetrics() = default;
16
17 void UnsentLogStoreMetrics::RecordLogReadStatus(LogReadStatus status) {}
18
19 void UnsentLogStoreMetrics::RecordCompressionRatio(size_t compressed_size,
20                                                    size_t original_size) {}
21
22 void UnsentLogStoreMetrics::RecordDroppedLogSize(size_t size) {}
23
24 void UnsentLogStoreMetrics::RecordDroppedLogsNum(int dropped_logs_num) {}
25
26 void UnsentLogStoreMetrics::RecordLastUnsentLogMetadataMetrics(
27     int unsent_samples_count,
28     int sent_samples_count,
29     int persisted_size_in_kb) {}
30
31 }  // namespace metrics