summaryrefslogtreecommitdiffstats
path: root/chrome/browser/browser_about_handler.cc
diff options
context:
space:
mode:
authorthakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-11-16 18:37:40 +0000
committerthakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-11-16 18:37:40 +0000
commit02c3f683b160a23afe889ab195ed2dc196a098fe (patch)
treebbd8b0e40aa762682d756fbaa73b21045b07390a /chrome/browser/browser_about_handler.cc
parent85d7bcf6ff662687704edd521f53b003c68ef9a2 (diff)
downloadchromium_src-02c3f683b160a23afe889ab195ed2dc196a098fe.zip
chromium_src-02c3f683b160a23afe889ab195ed2dc196a098fe.tar.gz
chromium_src-02c3f683b160a23afe889ab195ed2dc196a098fe.tar.bz2
chrome: Remove 14 exit time destructors and 2 static initializers.
BUG=101600, 94925 TEST=none TBR=mnissler Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=110235 Review URL: http://codereview.chromium.org/8573021 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@110330 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/browser_about_handler.cc')
-rw-r--r--chrome/browser/browser_about_handler.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/browser_about_handler.cc b/chrome/browser/browser_about_handler.cc
index fde58d2..fcf872e 100644
--- a/chrome/browser/browser_about_handler.cc
+++ b/chrome/browser/browser_about_handler.cc
@@ -895,7 +895,7 @@ void AboutMemory(const std::string& path, AboutSource* source, int request_id) {
std::string AboutStats(const std::string& query) {
// We keep the DictionaryValue tree live so that we can do delta
// stats computations across runs.
- static DictionaryValue root;
+ CR_DEFINE_STATIC_LOCAL(DictionaryValue, root, ());
static base::TimeTicks last_sample_time = base::TimeTicks::Now();
base::TimeTicks now = base::TimeTicks::Now();