Upstream version 10.39.225.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / platform / exported / WebSchedulerProxy.cpp
index 016abb0..fc1c5b1 100644 (file)
@@ -49,4 +49,15 @@ void WebSchedulerProxy::postCompositorTask(const WebTraceLocation& webLocation,
     m_scheduler->postCompositorTask(location, bind(&runTask, adoptPtr(task)));
 }
 
+void WebSchedulerProxy::postIpcTask(const WebTraceLocation& webLocation, WebThread::Task* task)
+{
+    TraceLocation location(webLocation.functionName(), webLocation.fileName());
+    m_scheduler->postIpcTask(location, bind(&runTask, adoptPtr(task)));
+}
+
+void WebSchedulerProxy::didReceiveInputEvent()
+{
+    m_scheduler->didReceiveInputEvent();
+}
+
 } // namespace blink