Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1417)

Unified Diff: content/common/content_counters.cc

Issue 6878002: Move renderer_main and renderer_glue to content. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/common/content_counters.h ('k') | content/common/content_switches.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/content_counters.cc
===================================================================
--- content/common/content_counters.cc (revision 81920)
+++ content/common/content_counters.cc (working copy)
@@ -1,12 +1,12 @@
-// Copyright (c) 2010 The Chromium Authors. All rights reserved.
+// Copyright (c) 2011 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.
-#include "chrome/common/chrome_counters.h"
+#include "content/common/content_counters.h"
#include "base/metrics/stats_counters.h"
-namespace chrome {
+namespace content {
using base::StatsCounterTimer;
using base::StatsRate;
@@ -32,14 +32,4 @@
return *ctr;
}
-StatsCounterTimer& Counters::spellcheck_init() {
- static StatsCounterTimer* ctr = new StatsCounterTimer("SpellCheck.Init");
- return *ctr;
-}
-
-StatsRate& Counters::spellcheck_lookup() {
- static StatsRate* ctr = new StatsRate("SpellCheck.Lookup");
- return *ctr;
-}
-
-} // namespace chrome
+} // namespace content
« no previous file with comments | « content/common/content_counters.h ('k') | content/common/content_switches.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698