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

Unified Diff: gpu/ipc/in_process_command_buffer.cc

Issue 2681033011: Changed GpuVSyncProvider to implement gfx::VSyncProvider (Closed)
Patch Set: Used base::MakeUnique Created 3 years, 10 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 cfdc87942affc0665f30e5b0143b059d7dc06596..a2ca15673ba964dec399f06e7a9da4b28f8a89ba 100644
--- a/gpu/ipc/in_process_command_buffer.cc
+++ b/gpu/ipc/in_process_command_buffer.cc
@@ -1065,6 +1065,15 @@ void InProcessCommandBuffer::UpdateVSyncParameters(base::TimeTicks timebase,
client_thread_weak_ptr_, timebase, interval));
}
+void InProcessCommandBuffer::AddFilter(IPC::MessageFilter* message_filter) {
+ NOTREACHED();
Fady Samuel 2017/02/14 09:09:38 This is used by Mus. Any reason not to update this
stanisc 2017/02/14 19:56:13 I am not sure GPU VSyncProvider could be used with
+}
+
+int32_t InProcessCommandBuffer::GetRouteID() const {
+ NOTREACHED();
Fady Samuel 2017/02/14 09:09:38 This is used by Mus. Any reason not to update this
stanisc 2017/02/14 19:56:13 See above.
+ return 0;
+}
+
void InProcessCommandBuffer::DidSwapBuffersCompleteOnOriginThread(
SwapBuffersCompleteParams params) {
#if defined(OS_MACOSX)

Powered by Google App Engine
This is Rietveld 408576698