Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(273)

Unified Diff: gpu/ipc/in_process_command_buffer.cc

Issue 2626413002: Route D3D VSync signal to Compositor (Closed)
Patch Set: Implement GPU VSync provider as gl::VSyncProvider Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: gpu/ipc/in_process_command_buffer.cc
diff --git a/gpu/ipc/in_process_command_buffer.cc b/gpu/ipc/in_process_command_buffer.cc
index e400376138f1b0de0d4dfac5de68240e736cc081..d8658362e9d7067f7dc3ce1fae845a402a7d2b15 100644
--- a/gpu/ipc/in_process_command_buffer.cc
+++ b/gpu/ipc/in_process_command_buffer.cc
@@ -1085,6 +1085,15 @@ void InProcessCommandBuffer::UpdateVSyncParameters(base::TimeTicks timebase,
client_thread_weak_ptr_, timebase, interval));
}
+void InProcessCommandBuffer::AddFilter(IPC::MessageFilter* message_filter) {
+ NOTREACHED();
+}
+
+int32_t InProcessCommandBuffer::GetRouteID() const {
+ NOTREACHED();
+ return 0;
+}
+
void InProcessCommandBuffer::DidSwapBuffersCompleteOnOriginThread(
SwapBuffersCompleteParams params) {
#if defined(OS_MACOSX)

Powered by Google App Engine
This is Rietveld 408576698