diff options
author | deanm@google.com <deanm@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-08-21 12:03:58 +0000 |
---|---|---|
committer | deanm@google.com <deanm@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-08-21 12:03:58 +0000 |
commit | 8e4e18052ac86ebc929048f0f6b2aeb750620320 (patch) | |
tree | 34f950e0014c7193501e9d8df1f2114243a47168 /base/SConscript | |
parent | 43f8dd28407afa029e88c7431c85f193d5ad537d (diff) | |
download | chromium_src-8e4e18052ac86ebc929048f0f6b2aeb750620320.zip chromium_src-8e4e18052ac86ebc929048f0f6b2aeb750620320.tar.gz chromium_src-8e4e18052ac86ebc929048f0f6b2aeb750620320.tar.bz2 |
Create a CallWrapper interface, for making closure-like callbacks. This is similar to RunnableMethod, but does not derive / involve a Task. This is more convenient than Callback, because the interfaces do not need to know what the underlying template arguments are, everything is dealt with as a CallWrapper*.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@1151 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/SConscript')
-rw-r--r-- | base/SConscript | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/base/SConscript b/base/SConscript index b6214e3..a7fc566 100644 --- a/base/SConscript +++ b/base/SConscript @@ -244,6 +244,7 @@ if env['PLATFORM'] == 'win32': # cross-platform live below. test_files = [ 'at_exit_unittest.cc', + 'call_wrapper_unittest.cc', 'command_line_unittest.cc', 'json_reader_unittest.cc', 'json_writer_unittest.cc', |