zhangqd / chromiumembedded

Automatically exported from code.google.com/p/chromiumembedded
0 stars 1 forks source link

ClientHandler::EndTracing() small fix in cefclient #1254

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
When not in the UI thread, ClientHandler::EndTracing() is calling CefPostTask 
to ClientHandler::BeginTracing() instead of itself:  

    CefPostTask(TID_UI,
        NewCefRunnableMethod(this, &ClientHandler::BeginTracing));

Instead it should be:

    CefPostTask(TID_UI,
        NewCefRunnableMethod(this, &ClientHandler::EndTracing));

Original issue reported on code.google.com by alo.and on 18 Apr 2014 at 4:57

GoogleCodeExporter commented 9 years ago
Thanks, fixed in trunk revision 1696, 1916 branch revision 1697 and 1750 branch 
revision 1698.

Original comment by magreenb...@gmail.com on 6 May 2014 at 5:34