| 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 673 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 684 switches::kEnableAccessibilityLogging, | 684 switches::kEnableAccessibilityLogging, |
| 685 switches::kEnableBrowserPlugin, | 685 switches::kEnableBrowserPlugin, |
| 686 switches::kEnableDCHECK, | 686 switches::kEnableDCHECK, |
| 687 switches::kEnableEncryptedMedia, | 687 switches::kEnableEncryptedMedia, |
| 688 switches::kEnableFixedLayout, | 688 switches::kEnableFixedLayout, |
| 689 switches::kEnableGamepad, | 689 switches::kEnableGamepad, |
| 690 switches::kEnableGPUServiceLogging, | 690 switches::kEnableGPUServiceLogging, |
| 691 switches::kEnableGPUClientLogging, | 691 switches::kEnableGPUClientLogging, |
| 692 switches::kEnableLogging, | 692 switches::kEnableLogging, |
| 693 switches::kEnableMediaSource, | 693 switches::kEnableMediaSource, |
| 694 switches::kEnableMediaStream, | |
| 695 switches::kEnablePeerConnection, | 694 switches::kEnablePeerConnection, |
| 696 switches::kEnableShadowDOM, | 695 switches::kEnableShadowDOM, |
| 697 switches::kEnableStrictSiteIsolation, | 696 switches::kEnableStrictSiteIsolation, |
| 698 switches::kEnableStyleScoped, | 697 switches::kEnableStyleScoped, |
| 699 switches::kDisableFullScreen, | 698 switches::kDisableFullScreen, |
| 700 switches::kEnablePepperTesting, | 699 switches::kEnablePepperTesting, |
| 701 switches::kEnablePointerLock, | 700 switches::kEnablePointerLock, |
| 702 switches::kEnablePreparsedJsCaching, | 701 switches::kEnablePreparsedJsCaching, |
| 703 switches::kEnablePruneGpuCommandBuffers, | 702 switches::kEnablePruneGpuCommandBuffers, |
| 704 #if defined(OS_MACOSX) | 703 #if defined(OS_MACOSX) |
| (...skipping 673 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1378 void RenderProcessHostImpl::OnCompositorSurfaceBuffersSwappedNoHost( | 1377 void RenderProcessHostImpl::OnCompositorSurfaceBuffersSwappedNoHost( |
| 1379 int32 surface_id, | 1378 int32 surface_id, |
| 1380 uint64 surface_handle, | 1379 uint64 surface_handle, |
| 1381 int32 route_id, | 1380 int32 route_id, |
| 1382 int32 gpu_process_host_id) { | 1381 int32 gpu_process_host_id) { |
| 1383 TRACE_EVENT0("renderer_host", | 1382 TRACE_EVENT0("renderer_host", |
| 1384 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost"); | 1383 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost"); |
| 1385 RenderWidgetHostImpl::AcknowledgeSwapBuffers(route_id, | 1384 RenderWidgetHostImpl::AcknowledgeSwapBuffers(route_id, |
| 1386 gpu_process_host_id); | 1385 gpu_process_host_id); |
| 1387 } | 1386 } |
| OLD | NEW |