| OLD | NEW |
| 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 #ifndef CONTENT_BROWSER_GPU_GPU_PROCESS_HOST_UI_SHIM_H_ | 5 #ifndef CONTENT_BROWSER_GPU_GPU_PROCESS_HOST_UI_SHIM_H_ |
| 6 #define CONTENT_BROWSER_GPU_GPU_PROCESS_HOST_UI_SHIM_H_ | 6 #define CONTENT_BROWSER_GPU_GPU_PROCESS_HOST_UI_SHIM_H_ |
| 7 | 7 |
| 8 // This class lives on the UI thread and supports classes like the | 8 // This class lives on the UI thread and supports classes like the |
| 9 // BackingStoreProxy, which must live on the UI thread. The IO thread | 9 // BackingStoreProxy, which must live on the UI thread. The IO thread |
| 10 // portion of this class, the GpuProcessHost, is responsible for | 10 // portion of this class, the GpuProcessHost, is responsible for |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 #include "gpu/config/gpu_info.h" | 24 #include "gpu/config/gpu_info.h" |
| 25 #include "gpu/ipc/common/memory_stats.h" | 25 #include "gpu/ipc/common/memory_stats.h" |
| 26 #include "ipc/ipc_listener.h" | 26 #include "ipc/ipc_listener.h" |
| 27 #include "ipc/ipc_sender.h" | 27 #include "ipc/ipc_sender.h" |
| 28 #include "ipc/message_router.h" | 28 #include "ipc/message_router.h" |
| 29 | 29 |
| 30 namespace IPC { | 30 namespace IPC { |
| 31 class Message; | 31 class Message; |
| 32 } | 32 } |
| 33 | 33 |
| 34 namespace gpu { | |
| 35 struct VideoMemoryUsageStats; | |
| 36 } | |
| 37 | |
| 38 namespace content { | 34 namespace content { |
| 39 void RouteToGpuProcessHostUIShimTask(int host_id, const IPC::Message& msg); | 35 void RouteToGpuProcessHostUIShimTask(int host_id, const IPC::Message& msg); |
| 40 | 36 |
| 41 class GpuProcessHostUIShim : public IPC::Listener, | 37 class GpuProcessHostUIShim : public IPC::Listener, |
| 42 public IPC::Sender, | 38 public IPC::Sender, |
| 43 public base::NonThreadSafe { | 39 public base::NonThreadSafe { |
| 44 public: | 40 public: |
| 45 // Create a GpuProcessHostUIShim with the given ID. The object can be found | 41 // Create a GpuProcessHostUIShim with the given ID. The object can be found |
| 46 // using FromID with the same id. | 42 // using FromID with the same id. |
| 47 static GpuProcessHostUIShim* Create(int host_id); | 43 static GpuProcessHostUIShim* Create(int host_id); |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 | 77 |
| 82 private: | 78 private: |
| 83 explicit GpuProcessHostUIShim(int host_id); | 79 explicit GpuProcessHostUIShim(int host_id); |
| 84 ~GpuProcessHostUIShim() override; | 80 ~GpuProcessHostUIShim() override; |
| 85 | 81 |
| 86 // Message handlers. | 82 // Message handlers. |
| 87 bool OnControlMessageReceived(const IPC::Message& message); | 83 bool OnControlMessageReceived(const IPC::Message& message); |
| 88 void OnLogMessage(int level, const std::string& header, | 84 void OnLogMessage(int level, const std::string& header, |
| 89 const std::string& message); | 85 const std::string& message); |
| 90 void OnGraphicsInfoCollected(const gpu::GPUInfo& gpu_info); | 86 void OnGraphicsInfoCollected(const gpu::GPUInfo& gpu_info); |
| 91 void OnVideoMemoryUsageStatsReceived( | |
| 92 const gpu::VideoMemoryUsageStats& video_memory_usage_stats); | |
| 93 | 87 |
| 94 // The serial number of the GpuProcessHost / GpuProcessHostUIShim pair. | 88 // The serial number of the GpuProcessHost / GpuProcessHostUIShim pair. |
| 95 int host_id_; | 89 int host_id_; |
| 96 base::Closure close_callback_; | 90 base::Closure close_callback_; |
| 97 }; | 91 }; |
| 98 | 92 |
| 99 } // namespace content | 93 } // namespace content |
| 100 | 94 |
| 101 #endif // CONTENT_BROWSER_GPU_GPU_PROCESS_HOST_UI_SHIM_H_ | 95 #endif // CONTENT_BROWSER_GPU_GPU_PROCESS_HOST_UI_SHIM_H_ |
| OLD | NEW |