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 749 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
760 switches::kEnableWebAudio, | 760 switches::kEnableWebAudio, |
761 #else | 761 #else |
762 switches::kDisableWebAudio, | 762 switches::kDisableWebAudio, |
763 #endif | 763 #endif |
764 switches::kEnableWebAudioInput, | 764 switches::kEnableWebAudioInput, |
765 switches::kDisableWebSockets, | 765 switches::kDisableWebSockets, |
766 switches::kDomAutomationController, | 766 switches::kDomAutomationController, |
767 switches::kEnableAccessibilityLogging, | 767 switches::kEnableAccessibilityLogging, |
768 switches::kEnableBrowserPluginCompositing, | 768 switches::kEnableBrowserPluginCompositing, |
769 switches::kEnableBrowserPluginForAllViewTypes, | 769 switches::kEnableBrowserPluginForAllViewTypes, |
770 switches::kEnableCssTransformPinch, | |
771 switches::kEnableDCHECK, | 770 switches::kEnableDCHECK, |
772 switches::kEnableDataChannels, | 771 switches::kEnableDataChannels, |
773 switches::kEnableEncryptedMedia, | 772 switches::kEnableEncryptedMedia, |
774 switches::kEnableExperimentalWebKitFeatures, | 773 switches::kEnableExperimentalWebKitFeatures, |
775 switches::kEnableFixedLayout, | 774 switches::kEnableFixedLayout, |
776 switches::kEnableDeferredImageDecoding, | 775 switches::kEnableDeferredImageDecoding, |
777 switches::kEnableGPUServiceLogging, | 776 switches::kEnableGPUServiceLogging, |
778 switches::kEnableGPUClientLogging, | 777 switches::kEnableGPUClientLogging, |
779 switches::kEnableGpuBenchmarking, | 778 switches::kEnableGpuBenchmarking, |
780 switches::kEnableLogging, | 779 switches::kEnableLogging, |
(...skipping 830 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1611 TRACE_EVENT0("renderer_host", | 1610 TRACE_EVENT0("renderer_host", |
1612 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost"); | 1611 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost"); |
1613 AcceleratedSurfaceMsg_BufferPresented_Params ack_params; | 1612 AcceleratedSurfaceMsg_BufferPresented_Params ack_params; |
1614 ack_params.sync_point = 0; | 1613 ack_params.sync_point = 0; |
1615 RenderWidgetHostImpl::AcknowledgeBufferPresent(route_id, | 1614 RenderWidgetHostImpl::AcknowledgeBufferPresent(route_id, |
1616 gpu_process_host_id, | 1615 gpu_process_host_id, |
1617 ack_params); | 1616 ack_params); |
1618 } | 1617 } |
1619 | 1618 |
1620 } // namespace content | 1619 } // namespace content |
OLD | NEW |