summaryrefslogtreecommitdiffstats
path: root/chrome/common/chrome_counters.h
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/common/chrome_counters.h')
-rw-r--r--chrome/common/chrome_counters.h36
1 files changed, 0 insertions, 36 deletions
diff --git a/chrome/common/chrome_counters.h b/chrome/common/chrome_counters.h
deleted file mode 100644
index 742cbb4..0000000
--- a/chrome/common/chrome_counters.h
+++ /dev/null
@@ -1,36 +0,0 @@
-// Copyright (c) 2006-2008 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.
-
-// Counters used within the browser.
-
-#ifndef CHROME_COMMON_CHROME_COUNTERS_H_
-#define CHROME_COMMON_CHROME_COUNTERS_H_
-#pragma once
-
-namespace base {
-class StatsCounter;
-class StatsCounterTimer;
-class StatsRate;
-}
-
-namespace chrome {
-
-class Counters {
- public:
- // The amount of time spent in chrome initialization.
- static base::StatsCounterTimer& chrome_main();
-
- // The amount of time spent in renderer initialization.
- static base::StatsCounterTimer& renderer_main();
-
- // Time spent in spellchecker initialization.
- static base::StatsCounterTimer& spellcheck_init();
-
- // Time/Count of spellcheck lookups.
- static base::StatsRate& spellcheck_lookup();
-};
-
-} // namespace chrome
-
-#endif // CHROME_COMMON_CHROME_COUNTERS_H_