| 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 #if defined(OS_WIN) | 10 #if defined(OS_WIN) |
| (...skipping 660 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 671 switches::kDisableWebAudio, | 671 switches::kDisableWebAudio, |
| 672 switches::kDisableWebSockets, | 672 switches::kDisableWebSockets, |
| 673 switches::kDomAutomationController, | 673 switches::kDomAutomationController, |
| 674 switches::kEnableAccessibilityLogging, | 674 switches::kEnableAccessibilityLogging, |
| 675 switches::kEnableDCHECK, | 675 switches::kEnableDCHECK, |
| 676 switches::kEnableEncryptedMedia, | 676 switches::kEnableEncryptedMedia, |
| 677 switches::kEnableFixedLayout, | 677 switches::kEnableFixedLayout, |
| 678 switches::kEnableGamepad, | 678 switches::kEnableGamepad, |
| 679 switches::kEnableGPUServiceLogging, | 679 switches::kEnableGPUServiceLogging, |
| 680 switches::kEnableGPUClientLogging, | 680 switches::kEnableGPUClientLogging, |
| 681 switches::kEnableGpuBenchmarking, |
| 681 switches::kEnableLogging, | 682 switches::kEnableLogging, |
| 682 switches::kEnableMediaSource, | 683 switches::kEnableMediaSource, |
| 683 switches::kEnablePartialSwap, | 684 switches::kEnablePartialSwap, |
| 684 switches::kEnablePeerConnection, | 685 switches::kEnablePeerConnection, |
| 685 switches::kEnablePerTilePainting, | 686 switches::kEnablePerTilePainting, |
| 686 switches::kEnableShadowDOM, | 687 switches::kEnableShadowDOM, |
| 687 switches::kEnableStrictSiteIsolation, | 688 switches::kEnableStrictSiteIsolation, |
| 688 switches::kEnableStyleScoped, | 689 switches::kEnableStyleScoped, |
| 689 switches::kDisableFullScreen, | 690 switches::kDisableFullScreen, |
| 690 switches::kEnablePepperTesting, | 691 switches::kEnablePepperTesting, |
| (...skipping 671 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1362 uint64 surface_handle, | 1363 uint64 surface_handle, |
| 1363 int32 route_id, | 1364 int32 route_id, |
| 1364 int32 gpu_process_host_id) { | 1365 int32 gpu_process_host_id) { |
| 1365 TRACE_EVENT0("renderer_host", | 1366 TRACE_EVENT0("renderer_host", |
| 1366 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost"); | 1367 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost"); |
| 1367 RenderWidgetHostImpl::AcknowledgeSwapBuffers(route_id, | 1368 RenderWidgetHostImpl::AcknowledgeSwapBuffers(route_id, |
| 1368 gpu_process_host_id); | 1369 gpu_process_host_id); |
| 1369 } | 1370 } |
| 1370 | 1371 |
| 1371 } // namespace content | 1372 } // namespace content |
| OLD | NEW |