summaryrefslogtreecommitdiffstats
path: root/media/base/bind_to_loop_unittest.cc
Commit message (Collapse)AuthorAgeFilesLines
* Use a direct include of the message_loop header in media/.avi@chromium.org2013-07-181-1/+1
| | | | | | | | | | BUG=260807 TEST=none TBR=ben@chromium.org Review URL: https://chromiumcodereview.appspot.com/19622002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@212247 0039d316-1c4b-4281-b951-d872f2087c98
* Use base::MessageLoop in media code.xhwang@chromium.org2013-04-221-1/+1
| | | | | | | | | | | | | | | | | | | | | | MessageLoop is moved to base namespace in r191566. This CL is the followup cleanup in media code. The following folders are replaced: chrome/browser/media content/browser/renderer_host/media content/common/gpu/media content/common/media content/renderer/media media webkit/media The following command is used to make sure all instances in these folders are updated: grep -rin '[^a-zA-Z]MessageLoop[^a-zA-Z]' media chrome/browser/media content/browser/renderer_host/media content/common/gpu/media content/common/media content/renderer/media webkit/media | grep -v 'base::MessageLoop' | grep -v 'class MessageLoop' Review URL: https://chromiumcodereview.appspot.com/14385002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@195626 0039d316-1c4b-4281-b951-d872f2087c98
* Rewrite scoped_array<T> to scoped_ptr<T[]> in media/ and webkit/.dcheng@chromium.org2013-04-071-4/+4
| | | | | | | | | | This changelist was automatically generated using a clang tool. BUG=171111 Review URL: https://codereview.chromium.org/13752002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@192779 0039d316-1c4b-4281-b951-d872f2087c98
* Add missing return statement in media::BindToLoop() when using ↵scherkus@chromium.org2012-11-271-0/+31
| | | | | | | | scoped_ptr_malloc<T,R>::Pass(). Review URL: https://chromiumcodereview.appspot.com/11280174 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@169578 0039d316-1c4b-4281-b951-d872f2087c98
* Teach BindToLoop to create callbacks that accept scoped parameters.fischman@chromium.org2012-10-241-1/+41
| | | | | | Review URL: https://chromiumcodereview.appspot.com/11092054 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@163729 0039d316-1c4b-4281-b951-d872f2087c98
* media::BindToLoop() is born, with example uses to slim down WebMediaPlayerProxy.fischman@chromium.org2012-08-181-0/+98
WMPP could use further slimming-down / flamethrowering, but this pass just removes the lowest-hanging fruit, where WMPP is used as a silent trampoline to WMPI on the render thread. Review URL: https://chromiumcodereview.appspot.com/10855188 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@152239 0039d316-1c4b-4281-b951-d872f2087c98