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_RENDERER_HOST_BROWSER_RENDER_PROCESS_HOST_IMPL_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_BROWSER_RENDER_PROCESS_HOST_IMPL_H_ |
6 #define CONTENT_BROWSER_RENDERER_HOST_BROWSER_RENDER_PROCESS_HOST_IMPL_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_BROWSER_RENDER_PROCESS_HOST_IMPL_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <map> | 9 #include <map> |
10 #include <queue> | 10 #include <queue> |
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
152 friend class VisitRelayingRenderProcessHost; | 152 friend class VisitRelayingRenderProcessHost; |
153 | 153 |
154 // Creates and adds the IO thread message filters. | 154 // Creates and adds the IO thread message filters. |
155 void CreateMessageFilters(); | 155 void CreateMessageFilters(); |
156 | 156 |
157 // Control message handlers. | 157 // Control message handlers. |
158 void OnShutdownRequest(); | 158 void OnShutdownRequest(); |
159 void OnDumpHandlesDone(); | 159 void OnDumpHandlesDone(); |
160 void SuddenTerminationChanged(bool enabled); | 160 void SuddenTerminationChanged(bool enabled); |
161 void OnUserMetricsRecordAction(const std::string& action); | 161 void OnUserMetricsRecordAction(const std::string& action); |
162 void OnRevealFolderInOS(const FilePath& path); | |
163 void OnSavedPageAsMHTML(int job_id, int64 mhtml_file_size); | 162 void OnSavedPageAsMHTML(int job_id, int64 mhtml_file_size); |
164 | 163 |
165 // CompositorSurfaceBuffersSwapped handler when there's no RWH. | 164 // CompositorSurfaceBuffersSwapped handler when there's no RWH. |
166 void OnCompositorSurfaceBuffersSwappedNoHost(int32 surface_id, | 165 void OnCompositorSurfaceBuffersSwappedNoHost(int32 surface_id, |
167 uint64 surface_handle, | 166 uint64 surface_handle, |
168 int32 route_id, | 167 int32 route_id, |
169 int32 gpu_process_host_id); | 168 int32 gpu_process_host_id); |
170 | 169 |
171 // Generates a command line to be used to spawn a renderer and appends the | 170 // Generates a command line to be used to spawn a renderer and appends the |
172 // results to |*command_line|. | 171 // results to |*command_line|. |
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
261 // filtering for this at the render widget level. | 260 // filtering for this at the render widget level. |
262 bool ignore_input_events_; | 261 bool ignore_input_events_; |
263 | 262 |
264 // Records the last time we regarded the child process active. | 263 // Records the last time we regarded the child process active. |
265 base::TimeTicks child_process_activity_time_; | 264 base::TimeTicks child_process_activity_time_; |
266 | 265 |
267 DISALLOW_COPY_AND_ASSIGN(RenderProcessHostImpl); | 266 DISALLOW_COPY_AND_ASSIGN(RenderProcessHostImpl); |
268 }; | 267 }; |
269 | 268 |
270 #endif // CONTENT_BROWSER_RENDERER_HOST_BROWSER_RENDER_PROCESS_HOST_IMPL_H_ | 269 #endif // CONTENT_BROWSER_RENDERER_HOST_BROWSER_RENDER_PROCESS_HOST_IMPL_H_ |
OLD | NEW |