chromeos: dbus: add Bluetooth properties support
[chromium-blink-merge.git] / content / common / content_counters.h
blobbe8787b2b17f9bd4701787e818f69ef4f6e7b38b
1 // Copyright (c) 2011 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.
5 // Counters used within the browser.
7 #ifndef CONTENT_COMMON_CONTENT_COUNTERS_H_
8 #define CONTENT_COMMON_CONTENT_COUNTERS_H_
9 #pragma once
11 #include "content/common/content_export.h"
13 namespace base {
14 class StatsCounter;
15 class StatsCounterTimer;
18 namespace content {
20 class Counters {
21 public:
22 // The amount of time spent in chrome initialization.
23 CONTENT_EXPORT static base::StatsCounterTimer& chrome_main();
25 // The amount of time spent in renderer initialization.
26 static base::StatsCounterTimer& renderer_main();
29 } // namespace content
31 #endif // CONTENT_COMMON_CONTENT_COUNTERS_H_