From 7246e45b7da6c14b1384658481ec49b45b5b488c Mon Sep 17 00:00:00 2001 From: dyen Date: Fri, 22 Jan 2016 15:38:31 -0800 Subject: Removed last references to old sync points. BUG=514815, 373452 CQ_INCLUDE_TRYBOTS=tryserver.blink:linux_blink_rel Review URL: https://codereview.chromium.org/1615253006 Cr-Commit-Position: refs/heads/master@{#371082} --- .../common/gpu/client/command_buffer_proxy_impl.cc | 23 ---------------------- .../common/gpu/client/command_buffer_proxy_impl.h | 5 ----- 2 files changed, 28 deletions(-) (limited to 'content/common/gpu/client') diff --git a/content/common/gpu/client/command_buffer_proxy_impl.cc b/content/common/gpu/client/command_buffer_proxy_impl.cc index 3991feb..027936f 100644 --- a/content/common/gpu/client/command_buffer_proxy_impl.cc +++ b/content/common/gpu/client/command_buffer_proxy_impl.cc @@ -620,29 +620,6 @@ bool CommandBufferProxyImpl::CanWaitUnverifiedSyncToken( return true; } -uint32_t CommandBufferProxyImpl::InsertSyncPoint() { - CheckLock(); - NOTREACHED(); - return 0; -} - -uint32_t CommandBufferProxyImpl::InsertFutureSyncPoint() { - CheckLock(); - NOTREACHED(); - return 0; -} - -void CommandBufferProxyImpl::RetireSyncPoint(uint32_t sync_point) { - CheckLock(); - NOTREACHED(); -} - -void CommandBufferProxyImpl::SignalSyncPoint(uint32_t sync_point, - const base::Closure& callback) { - CheckLock(); - NOTREACHED(); -} - void CommandBufferProxyImpl::SignalQuery(uint32_t query, const base::Closure& callback) { CheckLock(); diff --git a/content/common/gpu/client/command_buffer_proxy_impl.h b/content/common/gpu/client/command_buffer_proxy_impl.h index 17589a7..2f0ed90 100644 --- a/content/common/gpu/client/command_buffer_proxy_impl.h +++ b/content/common/gpu/client/command_buffer_proxy_impl.h @@ -116,11 +116,6 @@ class CommandBufferProxyImpl size_t height, unsigned internal_format, unsigned usage) override; - uint32_t InsertSyncPoint() override; - uint32_t InsertFutureSyncPoint() override; - void RetireSyncPoint(uint32_t sync_point) override; - void SignalSyncPoint(uint32_t sync_point, - const base::Closure& callback) override; void SignalQuery(uint32_t query, const base::Closure& callback) override; void SetLock(base::Lock* lock) override; bool IsGpuChannelLost() override; -- cgit v1.1