mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-14 06:10:40 +01:00

After this CL, WebRTC clients will be able to exclude the default metrics implementation by defining the preprocessor macro WEBRTC_EXCLUDE_METRICS_DEFAULT (if GN is used, it will be enough to set rtc_exclude_metrics_default to true). Bug: webrtc:9631 Change-Id: Id6db23cc4b6c292d9f97372a8014c0c467ed0538 No-Try: True Reviewed-on: https://webrtc-review.googlesource.com/98102 Commit-Queue: Mirko Bonadei <mbonadei@webrtc.org> Reviewed-by: Karl Wiberg <kwiberg@webrtc.org> Cr-Commit-Position: refs/heads/master@{#24747}
16 lines
617 B
C
16 lines
617 B
C
/*
|
|
* Copyright (c) 2016 The WebRTC project authors. All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license
|
|
* that can be found in the LICENSE file in the root of the source
|
|
* tree. An additional intellectual property rights grant can be found
|
|
* in the file PATENTS. All contributing project authors may
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
*/
|
|
|
|
#ifndef SYSTEM_WRAPPERS_INCLUDE_METRICS_DEFAULT_H_
|
|
#define SYSTEM_WRAPPERS_INCLUDE_METRICS_DEFAULT_H_
|
|
|
|
#include "system_wrappers/include/metrics.h"
|
|
|
|
#endif // SYSTEM_WRAPPERS_INCLUDE_METRICS_DEFAULT_H_
|