summaryrefslogtreecommitdiffstats
path: root/chrome/browser/profiles/profile_manager_unittest.cc
diff options
context:
space:
mode:
authorajwong@chromium.org <ajwong@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-01-06 02:37:17 +0000
committerajwong@chromium.org <ajwong@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-01-06 02:37:17 +0000
commitdcde767184d0ab222f846123bc397738b3bcd8f7 (patch)
tree0f9a8297a8ef586214a09e2c53e9c300a31f914a /chrome/browser/profiles/profile_manager_unittest.cc
parent651cea61d7994567ddd4db73012d6c9f737efee4 (diff)
downloadchromium_src-dcde767184d0ab222f846123bc397738b3bcd8f7.zip
chromium_src-dcde767184d0ab222f846123bc397738b3bcd8f7.tar.gz
chromium_src-dcde767184d0ab222f846123bc397738b3bcd8f7.tar.bz2
Change over IgnoreReturn to IgnoreResult. remove IgnoreReturn.
BUG=98919 TEST=existing Review URL: http://codereview.chromium.org/9111032 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@116631 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/profiles/profile_manager_unittest.cc')
-rw-r--r--chrome/browser/profiles/profile_manager_unittest.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/chrome/browser/profiles/profile_manager_unittest.cc b/chrome/browser/profiles/profile_manager_unittest.cc
index 5f24011..7d598c3 100644
--- a/chrome/browser/profiles/profile_manager_unittest.cc
+++ b/chrome/browser/profiles/profile_manager_unittest.cc
@@ -67,8 +67,7 @@ class ProfileManager : public ::ProfileManagerWithoutInit {
// This is safe while all file operations are done on the FILE thread.
BrowserThread::PostTask(
BrowserThread::FILE, FROM_HERE,
- base::IgnoreReturn<bool>(base::Bind(&file_util::CreateDirectory,
- path)));
+ base::Bind(base::IgnoreResult(&file_util::CreateDirectory), path));
return new TestingProfile(path, this);
}