diff options
author | cpu <cpu@chromium.org> | 2015-02-11 16:46:22 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-02-12 00:47:05 +0000 |
commit | 50bc7eadc783059e840b9f08588d755db3f6289a (patch) | |
tree | 01374efec1933e6d5e0253b655341f2c64ac676c /chrome/app/chrome_main_delegate.h | |
parent | 6875d4e0e4db94ab8ca1151adf316325d93c4dc5 (diff) | |
download | chromium_src-50bc7eadc783059e840b9f08588d755db3f6289a.zip chromium_src-50bc7eadc783059e840b9f08588d755db3f6289a.tar.gz chromium_src-50bc7eadc783059e840b9f08588d755db3f6289a.tar.bz2 |
removing all the code related to chrome://stats
this is all broken and has been for a while. Since then, 2012 to 2013
other, sytem-specific systems have been used.
Note that there is a v8 test that is using the stats table. Hoping to sort this now.
BUG=149742
Review URL: https://codereview.chromium.org/899753002
Cr-Commit-Position: refs/heads/master@{#315890}
Diffstat (limited to 'chrome/app/chrome_main_delegate.h')
-rw-r--r-- | chrome/app/chrome_main_delegate.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/chrome/app/chrome_main_delegate.h b/chrome/app/chrome_main_delegate.h index d2df7c4..50acbaa 100644 --- a/chrome/app/chrome_main_delegate.h +++ b/chrome/app/chrome_main_delegate.h @@ -6,7 +6,6 @@ #define CHROME_APP_CHROME_MAIN_DELEGATE_H_ #include "base/memory/scoped_ptr.h" -#include "base/metrics/stats_counters.h" #include "chrome/common/chrome_content_client.h" #include "content/public/app/content_main_delegate.h" @@ -57,13 +56,6 @@ class ChromeMainDelegate : public content::ContentMainDelegate { ChromeContentClient chrome_content_client_; - // startup_timer_ will hold a reference to stats_counter_timer_. Therefore, - // the declaration order of these variables matters. Changing this order will - // cause startup_timer_ to be freed before stats_counter_timer_, leaving a - // dangling reference. - scoped_ptr<base::StatsCounterTimer> stats_counter_timer_; - scoped_ptr<base::StatsScope<base::StatsCounterTimer> > startup_timer_; - DISALLOW_COPY_AND_ASSIGN(ChromeMainDelegate); }; |