commit | 24d6969c304316618d12bfbe49bc174101218eeb | [log] [tgz] |
---|---|---|
author | [email protected] <[email protected]@0039d316-1c4b-4281-b951-d872f2087c98> | Fri Oct 21 18:26:51 2011 |
committer | [email protected] <[email protected]@0039d316-1c4b-4281-b951-d872f2087c98> | Fri Oct 21 18:26:51 2011 |
tree | 4e003c37c887b2f6a674d50abb97a7e3c3cab26c | |
parent | f94c619e73b934b8f32edf303cc8998670f7cc64 [diff] [blame] |
base::Bind: Cleanup chrome/browser/memory_*. BUG=none TEST=none [email protected] Review URL: http://codereview.chromium.org/8366018 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@106743 0039d316-1c4b-4281-b951-d872f2087c98
diff --git a/chrome/browser/memory_details_win.cc b/chrome/browser/memory_details_win.cc index 576c74c..73fa325 100644 --- a/chrome/browser/memory_details_win.cc +++ b/chrome/browser/memory_details_win.cc
@@ -6,6 +6,7 @@ #include <psapi.h> +#include "base/bind.h" #include "base/file_path.h" #include "base/file_version_info.h" #include "base/string_util.h" @@ -156,5 +157,5 @@ // Finally return to the browser thread. BrowserThread::PostTask( BrowserThread::UI, FROM_HERE, - NewRunnableMethod(this, &MemoryDetails::CollectChildInfoOnUIThread)); + base::Bind(&MemoryDetails::CollectChildInfoOnUIThread, this)); }