diff options
author | jar@chromium.org <jar@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-04-10 22:29:29 +0000 |
---|---|---|
committer | jar@chromium.org <jar@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-04-10 22:29:29 +0000 |
commit | e6f02aba72e297560ece0e79d165abf4c49149ff (patch) | |
tree | 95fb68ad511b0ac62e2532c47f46362afff39f88 /chrome/common/ipc_channel_win.cc | |
parent | caae50cacfe0304045b9a961af797e3cf38bde23 (diff) | |
download | chromium_src-e6f02aba72e297560ece0e79d165abf4c49149ff.zip chromium_src-e6f02aba72e297560ece0e79d165abf4c49149ff.tar.gz chromium_src-e6f02aba72e297560ece0e79d165abf4c49149ff.tar.bz2 |
Remove histogram connection to base classes in stats_counter
Now that histograms move data from renderer to browser, there
is less reason to connect to stats counters.
Stats counters were using shared memory, and now they may
plausibly use the histogram's IPC mechanism instead to
move data to the browser. The first step is remove the
inheritance, and teh next (plausible/future) step
would be to implement counters as histograms with only
one bucket.
r=mbelshe
Review URL: http://codereview.chromium.org/66029
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@13544 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/ipc_channel_win.cc')
-rw-r--r-- | chrome/common/ipc_channel_win.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/chrome/common/ipc_channel_win.cc b/chrome/common/ipc_channel_win.cc index 38e442a..d4e7c31 100644 --- a/chrome/common/ipc_channel_win.cc +++ b/chrome/common/ipc_channel_win.cc @@ -10,6 +10,7 @@ #include "base/compiler_specific.h" #include "base/logging.h" #include "base/non_thread_safe.h" +#include "base/stats_counters.h" #include "base/win_util.h" #include "chrome/common/chrome_counters.h" #include "chrome/common/ipc_logging.h" |