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

Unified Diff: content/common/gpu/client/command_buffer_proxy_impl.cc

Issue 165393003: gpu: Generate mailboxes on client side (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 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: content/common/gpu/client/command_buffer_proxy_impl.cc
diff --git a/content/common/gpu/client/command_buffer_proxy_impl.cc b/content/common/gpu/client/command_buffer_proxy_impl.cc
index c785dcbfb8f99d41e8e6906f257c41ac69524c3b..631eea96641ac85446e394e408e527a1982ef29c 100644
--- a/content/common/gpu/client/command_buffer_proxy_impl.cc
+++ b/content/common/gpu/client/command_buffer_proxy_impl.cc
@@ -521,15 +521,6 @@ void CommandBufferProxyImpl::SendManagedMemoryStats(
stats));
}
-bool CommandBufferProxyImpl::GenerateMailboxNames(
- unsigned num,
- std::vector<gpu::Mailbox>* names) {
- if (last_state_.error != gpu::error::kNoError)
- return false;
-
- return channel_->GenerateMailboxNames(num, names);
-}
-
bool CommandBufferProxyImpl::ProduceFrontBuffer(const gpu::Mailbox& mailbox) {
if (last_state_.error != gpu::error::kNoError)
return false;

Powered by Google App Engine
This is Rietveld 408576698