// Copyright 2015 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CONTENT_BROWSER_BACKGROUND_SYNC_BACKGROUND_SYNC_METRICS_H_ #define CONTENT_BROWSER_BACKGROUND_SYNC_BACKGROUND_SYNC_METRICS_H_ #include "base/time/time.h" #include "content/browser/background_sync/background_sync.pb.h" #include "content/browser/background_sync/background_sync_status.h" #include "content/common/content_export.h" #include "third_party/blink/public/mojom/background_sync/background_sync.mojom.h" namespace content { // This class contains the logic for recording usage metrics for the Background // Sync API. It is stateless, containing only static methods, so it can be used // by any of the Background Sync code, without needing to be instantiated // explicitly. class CONTENT_EXPORT BackgroundSyncMetrics { … }; } // namespace content #endif // CONTENT_BROWSER_BACKGROUND_SYNC_BACKGROUND_SYNC_METRICS_H_