cef/tests/unittests
Marshall Greenblatt 122397acfc Introduce the use of Chromium types (issue #1336).
Changes to the CEF public API:
- Add base::Bind, base::Callback, base::Lock, base::WeakPtr, scoped_refptr, scoped_ptr and supporting types.
- Add include/wrapper/cef_closure_task.h helpers for converting a base::Closure to a CefTask.
- Change CefRefPtr to extend scoped_refptr.
-- Change CefBase method signatures to match RefCountedThreadSafeBase.
- Change IMPLEMENT_REFCOUNTING to use base::AtomicRefCount*.
-- Remove the CefAtomic* functions.
-- IMPLEMENT_REFCOUNTING now enforces via a compile-time error that the correct class name was passed to the macro.
- Change IMPLEMENT_LOCKING to use base::Lock.
-- Remove the CefCriticalSection class.
-- Deprecate the IMPLEMENT_LOCKING macro.
-- base::Lock will DCHECK() in Debug builds if lock usage is reentrant.
- Move include/internal/cef_tuple.h to include/base/cef_tuple.h.
- Allow an empty |callback| parameter passed to CefBeginTracing.

Changes to the CEF implementation:
- Fix incorrect names passed to the IMPLEMENT_REFCOUNTING macro.
- Fix instances of reentrant locking in the CefXmlObject and CefRequest implementations.
- Remove use of the IMPLEMENT_LOCKING macro.

Changes to cef_unittests:
- Add tests/unittests/chromium_includes.h and always include it first from unit test .cc files to avoid name conflicts with Chromium types.
- Fix wrong header include ordering.
- Remove use of the IMPLEMENT_LOCKING macro.

Changes to cefclient and cefsimple:
- Use base::Bind and cef_closure_task.h instead of NewCefRunnable*.
- Remove use of the IMPEMENT_LOCKING macro.
- Fix incorrect/unnecessary locking.
- Add additional runtime thread checks.
- Windows: Perform actions on the UI thread instead of the main thread when running in multi-threaded-message-loop mode to avoid excessive locking.

git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@1769 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
2014-07-14 22:18:51 +00:00
..
mac Branch CEF3 files from /branches/cef3 to /trunk/cef3 (issue #564). 2012-04-03 01:34:16 +00:00
browser_info_map_unittest.cc Introduce the use of Chromium types (issue #1336). 2014-07-14 22:18:51 +00:00
chromium_includes.h Introduce the use of Chromium types (issue #1336). 2014-07-14 22:18:51 +00:00
client_app_delegates.cc Linux: Add new CefPrintHandler and CefPrintSettings classes to support printing and a GTK implementation in cefclient (issue #1258). 2014-07-10 15:41:30 +00:00
command_line_unittest.cc Introduce the use of Chromium types (issue #1336). 2014-07-14 22:18:51 +00:00
cookie_unittest.cc Introduce the use of Chromium types (issue #1336). 2014-07-14 22:18:51 +00:00
dialog_unittest.cc Introduce the use of Chromium types (issue #1336). 2014-07-14 22:18:51 +00:00
display_unittest.cc Introduce the use of Chromium types (issue #1336). 2014-07-14 22:18:51 +00:00
dom_unittest.cc Introduce the use of Chromium types (issue #1336). 2014-07-14 22:18:51 +00:00
download_unittest.cc Introduce the use of Chromium types (issue #1336). 2014-07-14 22:18:51 +00:00
geolocation_unittest.cc Introduce the use of Chromium types (issue #1336). 2014-07-14 22:18:51 +00:00
jsdialog_unittest.cc Introduce the use of Chromium types (issue #1336). 2014-07-14 22:18:51 +00:00
life_span_unittest.cc Introduce the use of Chromium types (issue #1336). 2014-07-14 22:18:51 +00:00
message_router_unittest.cc Introduce the use of Chromium types (issue #1336). 2014-07-14 22:18:51 +00:00
navigation_unittest.cc Introduce the use of Chromium types (issue #1336). 2014-07-14 22:18:51 +00:00
os_rendering_unittest.cc Introduce the use of Chromium types (issue #1336). 2014-07-14 22:18:51 +00:00
os_rendering_unittest_mac.h Implement off-screen rendering support using delegated rendering (issue #1257). 2014-06-30 22:30:29 +00:00
os_rendering_unittest_mac.mm Introduce the use of Chromium types (issue #1336). 2014-07-14 22:18:51 +00:00
print_unittest.cc Introduce the use of Chromium types (issue #1336). 2014-07-14 22:18:51 +00:00
process_message_unittest.cc Introduce the use of Chromium types (issue #1336). 2014-07-14 22:18:51 +00:00
request_context_unittest.cc Introduce the use of Chromium types (issue #1336). 2014-07-14 22:18:51 +00:00
request_handler_unittest.cc Introduce the use of Chromium types (issue #1336). 2014-07-14 22:18:51 +00:00
request_unittest.cc Introduce the use of Chromium types (issue #1336). 2014-07-14 22:18:51 +00:00
routing_test_handler.cc Introduce the use of Chromium types (issue #1336). 2014-07-14 22:18:51 +00:00
routing_test_handler.h Provide a generic JavaScript message router implementation (issue #1183). 2014-01-27 23:31:03 +00:00
run_all_unittests.cc Introduce the use of Chromium types (issue #1336). 2014-07-14 22:18:51 +00:00
run_all_unittests_mac.mm Introduce the use of Chromium types (issue #1336). 2014-07-14 22:18:51 +00:00
scheme_handler_unittest.cc Introduce the use of Chromium types (issue #1336). 2014-07-14 22:18:51 +00:00
stream_resource_handler_unittest.cc Introduce the use of Chromium types (issue #1336). 2014-07-14 22:18:51 +00:00
stream_unittest.cc Introduce the use of Chromium types (issue #1336). 2014-07-14 22:18:51 +00:00
string_unittest.cc Introduce the use of Chromium types (issue #1336). 2014-07-14 22:18:51 +00:00
task_unittest.cc Introduce the use of Chromium types (issue #1336). 2014-07-14 22:18:51 +00:00
test_handler.cc Introduce the use of Chromium types (issue #1336). 2014-07-14 22:18:51 +00:00
test_handler.h Introduce the use of Chromium types (issue #1336). 2014-07-14 22:18:51 +00:00
test_suite.cc Introduce the use of Chromium types (issue #1336). 2014-07-14 22:18:51 +00:00
test_suite.h Update to Chromium revision 261035. 2014-04-04 16:50:38 +00:00
test_util.cc Introduce the use of Chromium types (issue #1336). 2014-07-14 22:18:51 +00:00
test_util.h - Provide default implementations of the file chooser dialogs (open, open multiple, save) on all platforms (issue #761). 2012-10-16 19:28:07 +00:00
tracing_unittest.cc Introduce the use of Chromium types (issue #1336). 2014-07-14 22:18:51 +00:00
url_unittest.cc Introduce the use of Chromium types (issue #1336). 2014-07-14 22:18:51 +00:00
urlrequest_unittest.cc Introduce the use of Chromium types (issue #1336). 2014-07-14 22:18:51 +00:00
v8_unittest.cc Introduce the use of Chromium types (issue #1336). 2014-07-14 22:18:51 +00:00
values_unittest.cc Introduce the use of Chromium types (issue #1336). 2014-07-14 22:18:51 +00:00
version_unittest.cc Introduce the use of Chromium types (issue #1336). 2014-07-14 22:18:51 +00:00
xml_reader_unittest.cc Introduce the use of Chromium types (issue #1336). 2014-07-14 22:18:51 +00:00
zip_reader_unittest.cc Introduce the use of Chromium types (issue #1336). 2014-07-14 22:18:51 +00:00