From b38d3578e53d0a7f441c6858334a2d9f08e5c024 Mon Sep 17 00:00:00 2001 From: "ajwong@chromium.org" Date: Tue, 15 Feb 2011 01:27:38 +0000 Subject: Unified callback system based on tr1::function/tr1::bind and Google's internal callback code. This callback system allows for creation of functors for normal functions, methods, and const methods. It is a superset of the functionality of NewRunnableMethod, NewRunnableFunction, NewCallback, and CreateFunctor. We support partial binding of function arguments, and also specification of refcounting semantics by wrapping a target object in a wrapper object. BUG=35223 TEST=none Review URL: http://codereview.chromium.org/6109007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@74904 0039d316-1c4b-4281-b951-d872f2087c98 --- base/base.gyp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'base/base.gyp') diff --git a/base/base.gyp b/base/base.gyp index c407ce9..868569e 100644 --- a/base/base.gyp +++ b/base/base.gyp @@ -65,6 +65,7 @@ 'at_exit_unittest.cc', 'atomicops_unittest.cc', 'base64_unittest.cc', + 'bind_unittest.cc', 'bits_unittest.cc', 'callback_unittest.cc', 'command_line_unittest.cc', @@ -142,6 +143,7 @@ 'sys_string_conversions_unittest.cc', 'task_queue_unittest.cc', 'task_unittest.cc', + 'template_util_unittest.cc', 'threading/non_thread_safe_unittest.cc', 'threading/platform_thread_unittest.cc', 'threading/simple_thread_unittest.cc', -- cgit v1.1