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

Side by Side Diff: content/browser/gpu/gpu_process_host_ui_shim.cc

Issue 1708783002: Mustash: move content::GPUVideoMemoryUsageStats to gpu::VideoMemoryUsageStats (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "content/browser/gpu/gpu_process_host_ui_shim.h" 5 #include "content/browser/gpu/gpu_process_host_ui_shim.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 8
9 #include "base/bind.h" 9 #include "base/bind.h"
10 #include "base/callback_helpers.h" 10 #include "base/callback_helpers.h"
11 #include "base/id_map.h" 11 #include "base/id_map.h"
12 #include "base/lazy_instance.h" 12 #include "base/lazy_instance.h"
13 #include "base/strings/string_number_conversions.h" 13 #include "base/strings/string_number_conversions.h"
14 #include "base/trace_event/trace_event.h" 14 #include "base/trace_event/trace_event.h"
15 #include "build/build_config.h" 15 #include "build/build_config.h"
16 #include "content/browser/compositor/gpu_process_transport_factory.h" 16 #include "content/browser/compositor/gpu_process_transport_factory.h"
17 #include "content/browser/gpu/compositor_util.h" 17 #include "content/browser/gpu/compositor_util.h"
18 #include "content/browser/gpu/gpu_data_manager_impl.h" 18 #include "content/browser/gpu/gpu_data_manager_impl.h"
19 #include "content/browser/gpu/gpu_process_host.h" 19 #include "content/browser/gpu/gpu_process_host.h"
20 #include "content/browser/gpu/gpu_surface_tracker.h" 20 #include "content/browser/gpu/gpu_surface_tracker.h"
21 #include "content/browser/renderer_host/render_process_host_impl.h" 21 #include "content/browser/renderer_host/render_process_host_impl.h"
22 #include "content/browser/renderer_host/render_view_host_impl.h" 22 #include "content/browser/renderer_host/render_view_host_impl.h"
23 #include "content/browser/renderer_host/render_widget_helper.h" 23 #include "content/browser/renderer_host/render_widget_helper.h"
24 #include "content/browser/renderer_host/render_widget_host_view_base.h" 24 #include "content/browser/renderer_host/render_widget_host_view_base.h"
25 #include "content/common/gpu/gpu_messages.h" 25 #include "content/common/gpu/gpu_messages.h"
26 #include "content/public/browser/browser_thread.h" 26 #include "content/public/browser/browser_thread.h"
27 #include "gpu/ipc/common/memory_stats.h"
27 28
28 #if defined(OS_MACOSX) 29 #if defined(OS_MACOSX)
29 #include "ui/accelerated_widget_mac/accelerated_widget_mac.h" 30 #include "ui/accelerated_widget_mac/accelerated_widget_mac.h"
30 #endif 31 #endif
31 32
32 #if defined(USE_OZONE) 33 #if defined(USE_OZONE)
33 #include "ui/ozone/public/gpu_platform_support_host.h" 34 #include "ui/ozone/public/gpu_platform_support_host.h"
34 #include "ui/ozone/public/ozone_platform.h" 35 #include "ui/ozone/public/ozone_platform.h"
35 #endif 36 #endif
36 37
(...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after
264 } 265 }
265 266
266 content::ImageTransportFactory::GetInstance()->OnGpuSwapBuffersCompleted( 267 content::ImageTransportFactory::GetInstance()->OnGpuSwapBuffersCompleted(
267 params.surface_id, params.latency_info, gfx::SwapResult::SWAP_ACK); 268 params.surface_id, params.latency_info, gfx::SwapResult::SWAP_ACK);
268 269
269 Send(new AcceleratedSurfaceMsg_BufferPresented(params.route_id, ack_params)); 270 Send(new AcceleratedSurfaceMsg_BufferPresented(params.route_id, ack_params));
270 } 271 }
271 #endif 272 #endif
272 273
273 void GpuProcessHostUIShim::OnVideoMemoryUsageStatsReceived( 274 void GpuProcessHostUIShim::OnVideoMemoryUsageStatsReceived(
274 const GPUVideoMemoryUsageStats& video_memory_usage_stats) { 275 const gpu::VideoMemoryUsageStats& video_memory_usage_stats) {
275 GpuDataManagerImpl::GetInstance()->UpdateVideoMemoryUsageStats( 276 GpuDataManagerImpl::GetInstance()->UpdateVideoMemoryUsageStats(
276 video_memory_usage_stats); 277 video_memory_usage_stats);
277 } 278 }
278 279
279 void GpuProcessHostUIShim::OnAddSubscription(int32_t process_id, 280 void GpuProcessHostUIShim::OnAddSubscription(int32_t process_id,
280 unsigned int target) { 281 unsigned int target) {
281 RenderProcessHost* rph = RenderProcessHost::FromID(process_id); 282 RenderProcessHost* rph = RenderProcessHost::FromID(process_id);
282 if (rph) { 283 if (rph) {
283 rph->OnAddSubscription(target); 284 rph->OnAddSubscription(target);
284 } 285 }
285 } 286 }
286 287
287 void GpuProcessHostUIShim::OnRemoveSubscription(int32_t process_id, 288 void GpuProcessHostUIShim::OnRemoveSubscription(int32_t process_id,
288 unsigned int target) { 289 unsigned int target) {
289 RenderProcessHost* rph = RenderProcessHost::FromID(process_id); 290 RenderProcessHost* rph = RenderProcessHost::FromID(process_id);
290 if (rph) { 291 if (rph) {
291 rph->OnRemoveSubscription(target); 292 rph->OnRemoveSubscription(target);
292 } 293 }
293 } 294 }
294 295
295 } // namespace content 296 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698