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

Unified Diff: content/gpu/gpu_child_thread.cc

Issue 1894313002: Removed implementation of CHROMIUM_subscribe_uniform (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Missed a couple more mus/ references Created 4 years, 8 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
« no previous file with comments | « content/gpu/gpu_child_thread.h ('k') | content/public/browser/gpu_utils.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/gpu/gpu_child_thread.cc
diff --git a/content/gpu/gpu_child_thread.cc b/content/gpu/gpu_child_thread.cc
index e652ca914b2522242abeff12133648870ae82245..e7209563e6ba5e7b95b487ef3a3de4df81e11122 100644
--- a/content/gpu/gpu_child_thread.cc
+++ b/content/gpu/gpu_child_thread.cc
@@ -291,7 +291,6 @@ bool GpuChildThread::OnMessageReceived(const IPC::Message& msg) {
IPC_MESSAGE_HANDLER(GpuMsg_CloseChannel, OnCloseChannel)
IPC_MESSAGE_HANDLER(GpuMsg_DestroyGpuMemoryBuffer, OnDestroyGpuMemoryBuffer)
IPC_MESSAGE_HANDLER(GpuMsg_LoadedShader, OnLoadedShader)
- IPC_MESSAGE_HANDLER(GpuMsg_UpdateValueState, OnUpdateValueState)
#if defined(OS_ANDROID)
IPC_MESSAGE_HANDLER(GpuMsg_WakeUpGpu, OnWakeUpGpu);
#endif
@@ -307,10 +306,6 @@ void GpuChildThread::SetActiveURL(const GURL& url) {
GetContentClient()->SetActiveURL(url);
}
-void GpuChildThread::AddSubscription(int32_t client_id, unsigned int target) {
- Send(new GpuHostMsg_AddSubscription(client_id, target));
-}
-
void GpuChildThread::DidCreateOffscreenContext(const GURL& active_url) {
Send(new GpuHostMsg_DidCreateOffscreenContext(active_url));
}
@@ -334,11 +329,6 @@ void GpuChildThread::GpuMemoryUmaStats(const gpu::GPUMemoryUmaStats& params) {
Send(new GpuHostMsg_GpuMemoryUmaStats(params));
}
-void GpuChildThread::RemoveSubscription(int32_t client_id,
- unsigned int target) {
- Send(new GpuHostMsg_RemoveSubscription(client_id, target));
-}
-
#if defined(OS_MACOSX)
void GpuChildThread::SendAcceleratedSurfaceBuffersSwapped(
int32_t surface_id,
@@ -565,13 +555,6 @@ void GpuChildThread::OnDestroyGpuMemoryBuffer(
gpu_channel_manager_->DestroyGpuMemoryBuffer(id, client_id, sync_token);
}
-void GpuChildThread::OnUpdateValueState(int client_id,
- unsigned int target,
- const gpu::ValueState& state) {
- if (gpu_channel_manager_)
- gpu_channel_manager_->UpdateValueState(client_id, target, state);
-}
-
#if defined(OS_ANDROID)
void GpuChildThread::OnWakeUpGpu() {
if (gpu_channel_manager_)
« no previous file with comments | « content/gpu/gpu_child_thread.h ('k') | content/public/browser/gpu_utils.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698