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 // Represents the browser side of the browser <--> renderer communication | 5 // Represents the browser side of the browser <--> renderer communication |
6 // channel. There will be one RenderProcessHost per renderer process. | 6 // channel. There will be one RenderProcessHost per renderer process. |
7 | 7 |
8 #include "content/browser/renderer_host/render_process_host_impl.h" | 8 #include "content/browser/renderer_host/render_process_host_impl.h" |
9 | 9 |
10 #include <algorithm> | 10 #include <algorithm> |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
62 #include "content/browser/histogram_message_filter.h" | 62 #include "content/browser/histogram_message_filter.h" |
63 #include "content/browser/indexed_db/indexed_db_context_impl.h" | 63 #include "content/browser/indexed_db/indexed_db_context_impl.h" |
64 #include "content/browser/indexed_db/indexed_db_dispatcher_host.h" | 64 #include "content/browser/indexed_db/indexed_db_dispatcher_host.h" |
65 #include "content/browser/loader/resource_message_filter.h" | 65 #include "content/browser/loader/resource_message_filter.h" |
66 #include "content/browser/loader/resource_scheduler_filter.h" | 66 #include "content/browser/loader/resource_scheduler_filter.h" |
67 #include "content/browser/media/capture/audio_mirroring_manager.h" | 67 #include "content/browser/media/capture/audio_mirroring_manager.h" |
68 #include "content/browser/media/media_internals.h" | 68 #include "content/browser/media/media_internals.h" |
69 #include "content/browser/media/midi_host.h" | 69 #include "content/browser/media/midi_host.h" |
70 #include "content/browser/message_port_message_filter.h" | 70 #include "content/browser/message_port_message_filter.h" |
71 #include "content/browser/mime_registry_message_filter.h" | 71 #include "content/browser/mime_registry_message_filter.h" |
| 72 #include "content/browser/mojo/mojo_application_host.h" |
72 #include "content/browser/plugin_service_impl.h" | 73 #include "content/browser/plugin_service_impl.h" |
73 #include "content/browser/profiler_message_filter.h" | 74 #include "content/browser/profiler_message_filter.h" |
74 #include "content/browser/push_messaging_message_filter.h" | 75 #include "content/browser/push_messaging_message_filter.h" |
75 #include "content/browser/quota_dispatcher_host.h" | 76 #include "content/browser/quota_dispatcher_host.h" |
76 #include "content/browser/renderer_host/clipboard_message_filter.h" | 77 #include "content/browser/renderer_host/clipboard_message_filter.h" |
77 #include "content/browser/renderer_host/database_message_filter.h" | 78 #include "content/browser/renderer_host/database_message_filter.h" |
78 #include "content/browser/renderer_host/file_utilities_message_filter.h" | 79 #include "content/browser/renderer_host/file_utilities_message_filter.h" |
79 #include "content/browser/renderer_host/gamepad_browser_message_filter.h" | 80 #include "content/browser/renderer_host/gamepad_browser_message_filter.h" |
80 #include "content/browser/renderer_host/gpu_message_filter.h" | 81 #include "content/browser/renderer_host/gpu_message_filter.h" |
81 #include "content/browser/renderer_host/media/audio_input_renderer_host.h" | 82 #include "content/browser/renderer_host/media/audio_input_renderer_host.h" |
(...skipping 2268 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2350 } | 2351 } |
2351 | 2352 |
2352 void RenderProcessHostImpl::OnDeletedGpuMemoryBuffer( | 2353 void RenderProcessHostImpl::OnDeletedGpuMemoryBuffer( |
2353 gfx::GpuMemoryBufferType type, | 2354 gfx::GpuMemoryBufferType type, |
2354 const gfx::GpuMemoryBufferId& id) { | 2355 const gfx::GpuMemoryBufferId& id) { |
2355 DCHECK_CURRENTLY_ON(BrowserThread::UI); | 2356 DCHECK_CURRENTLY_ON(BrowserThread::UI); |
2356 GpuMemoryBufferImpl::DeletedByChildProcess(type, id, GetHandle()); | 2357 GpuMemoryBufferImpl::DeletedByChildProcess(type, id, GetHandle()); |
2357 } | 2358 } |
2358 | 2359 |
2359 } // namespace content | 2360 } // namespace content |
OLD | NEW |