diff options
author | ajwong@chromium.org <ajwong@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-12-13 19:32:25 +0000 |
---|---|---|
committer | ajwong@chromium.org <ajwong@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-12-13 19:32:25 +0000 |
commit | 54af837075a853dc13c9a85378aac56c60c70927 (patch) | |
tree | 0027dce2fe4f892c0eabc35bc646d35a6593962e /base/callback.h.pump | |
parent | ab9fe0f8b3127a8cc224322107d2f77fe0a9ef38 (diff) | |
download | chromium_src-54af837075a853dc13c9a85378aac56c60c70927.zip chromium_src-54af837075a853dc13c9a85378aac56c60c70927.tar.gz chromium_src-54af837075a853dc13c9a85378aac56c60c70927.tar.bz2 |
Revert of "Redo r113722 - Add Pass(), which implements move semantics, to scoped_ptr, scoped_ar..."
This reverts commit r113922.
Win Canary has been failing to link due to OOM since the weekend. While this was not the original cause, it might be making things worse. Speculatively remove for now.
Also changes render_widge_host_view to use Owned() instead of Passed().
BUG=none
TEST=existing.
Review URL: http://codereview.chromium.org/8931008
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@114247 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/callback.h.pump')
-rw-r--r-- | base/callback.h.pump | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/base/callback.h.pump b/base/callback.h.pump index 882cae9..91a41e0 100644 --- a/base/callback.h.pump +++ b/base/callback.h.pump @@ -291,7 +291,7 @@ class Callback<R($for ARG , [[A$(ARG)]])> : public internal::CallbackBase { return f(bind_state_.get()[[]] $if ARITY != 0 [[, ]] $for ARG , - [[internal::CallbackForward(a$(ARG))]]); + [[a$(ARG)]]); } private: |