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 14 matching lines...) Expand all Loading... |
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 service_manager { | 34 namespace service_manager { |
35 class InterfaceRegistry; | 35 class BinderRegistry; |
36 } | 36 } |
37 | 37 |
38 namespace content { | 38 namespace content { |
39 void RouteToGpuProcessHostUIShimTask(int host_id, const IPC::Message& msg); | 39 void RouteToGpuProcessHostUIShimTask(int host_id, const IPC::Message& msg); |
40 | 40 |
41 class GpuProcessHostUIShim : public IPC::Listener, | 41 class GpuProcessHostUIShim : public IPC::Listener, |
42 public base::NonThreadSafe { | 42 public base::NonThreadSafe { |
43 public: | 43 public: |
44 // Create a GpuProcessHostUIShim with the given ID. The object can be found | 44 // Create a GpuProcessHostUIShim with the given ID. The object can be found |
45 // using FromID with the same id. | 45 // using FromID with the same id. |
(...skipping 11 matching lines...) Expand all Loading... |
57 | 57 |
58 // IPC::Listener implementation. | 58 // IPC::Listener implementation. |
59 // The GpuProcessHost causes this to be called on the UI thread to | 59 // The GpuProcessHost causes this to be called on the UI thread to |
60 // dispatch the incoming messages from the GPU process, which are | 60 // dispatch the incoming messages from the GPU process, which are |
61 // actually received on the IO thread. | 61 // actually received on the IO thread. |
62 bool OnMessageReceived(const IPC::Message& message) override; | 62 bool OnMessageReceived(const IPC::Message& message) override; |
63 | 63 |
64 #if defined(OS_ANDROID) | 64 #if defined(OS_ANDROID) |
65 // Register Mojo interfaces that must be bound on the UI thread. | 65 // Register Mojo interfaces that must be bound on the UI thread. |
66 static void RegisterUIThreadMojoInterfaces( | 66 static void RegisterUIThreadMojoInterfaces( |
67 service_manager::InterfaceRegistry* registry); | 67 service_manager::BinderRegistry* registry); |
68 #endif | 68 #endif |
69 | 69 |
70 private: | 70 private: |
71 explicit GpuProcessHostUIShim(int host_id); | 71 explicit GpuProcessHostUIShim(int host_id); |
72 ~GpuProcessHostUIShim() override; | 72 ~GpuProcessHostUIShim() override; |
73 | 73 |
74 // The serial number of the GpuProcessHost / GpuProcessHostUIShim pair. | 74 // The serial number of the GpuProcessHost / GpuProcessHostUIShim pair. |
75 int host_id_; | 75 int host_id_; |
76 }; | 76 }; |
77 | 77 |
78 } // namespace content | 78 } // namespace content |
79 | 79 |
80 #endif // CONTENT_BROWSER_GPU_GPU_PROCESS_HOST_UI_SHIM_H_ | 80 #endif // CONTENT_BROWSER_GPU_GPU_PROCESS_HOST_UI_SHIM_H_ |
OLD | NEW |