| Index: chrome/test/base/chrome_unit_test_suite.cc
|
| diff --git a/chrome/test/base/chrome_unit_test_suite.cc b/chrome/test/base/chrome_unit_test_suite.cc
|
| index 48cbb637f6c47113dc4ce9364644f5427f61f427..197f3e598e388b5590cb39041503ae2098ebe9c6 100644
|
| --- a/chrome/test/base/chrome_unit_test_suite.cc
|
| +++ b/chrome/test/base/chrome_unit_test_suite.cc
|
| @@ -6,7 +6,6 @@
|
|
|
| #include "base/path_service.h"
|
| #include "base/process/process_handle.h"
|
| -#include "base/metrics/stats_table.h"
|
| #include "base/strings/stringprintf.h"
|
| #include "chrome/browser/chrome_content_browser_client.h"
|
| #include "chrome/browser/omaha_query_params/chrome_omaha_query_params_delegate.h"
|
| @@ -100,12 +99,6 @@ void ChromeUnitTestSuite::Initialize() {
|
| InitializeProviders();
|
| RegisterInProcessThreads();
|
|
|
| - // Create an anonymous stats table since we don't need to share between
|
| - // processes.
|
| - stats_table_.reset(
|
| - new base::StatsTable(base::StatsTable::TableIdentifier(), 20, 200));
|
| - base::StatsTable::set_current(stats_table_.get());
|
| -
|
| ChromeTestSuite::Initialize();
|
|
|
| // This needs to run after ChromeTestSuite::Initialize which calls content's
|
| @@ -115,10 +108,6 @@ void ChromeUnitTestSuite::Initialize() {
|
|
|
| void ChromeUnitTestSuite::Shutdown() {
|
| ResourceBundle::CleanupSharedInstance();
|
| -
|
| - base::StatsTable::set_current(NULL);
|
| - stats_table_.reset();
|
| -
|
| ChromeTestSuite::Shutdown();
|
| }
|
|
|
|
|