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 856 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
867 switches::kEnableTouchDragDrop, | 867 switches::kEnableTouchDragDrop, |
868 switches::kDisableThreadedCompositing, | 868 switches::kDisableThreadedCompositing, |
869 switches::kDisableTouchAdjustment, | 869 switches::kDisableTouchAdjustment, |
870 switches::kDefaultTileWidth, | 870 switches::kDefaultTileWidth, |
871 switches::kDefaultTileHeight, | 871 switches::kDefaultTileHeight, |
872 switches::kMaxUntiledLayerWidth, | 872 switches::kMaxUntiledLayerWidth, |
873 switches::kMaxUntiledLayerHeight, | 873 switches::kMaxUntiledLayerHeight, |
874 switches::kEnableViewport, | 874 switches::kEnableViewport, |
875 switches::kEnableOpusPlayback, | 875 switches::kEnableOpusPlayback, |
876 switches::kEnableVp9Playback, | 876 switches::kEnableVp9Playback, |
| 877 switches::kEnableVp8AlphaPlayback, |
877 switches::kForceDeviceScaleFactor, | 878 switches::kForceDeviceScaleFactor, |
878 switches::kFullMemoryCrashReport, | 879 switches::kFullMemoryCrashReport, |
879 #if !defined (GOOGLE_CHROME_BUILD) | 880 #if !defined (GOOGLE_CHROME_BUILD) |
880 // These are unsupported and not fully tested modes, so don't enable them | 881 // These are unsupported and not fully tested modes, so don't enable them |
881 // for official Google Chrome builds. | 882 // for official Google Chrome builds. |
882 switches::kInProcessPlugins, | 883 switches::kInProcessPlugins, |
883 #endif // GOOGLE_CHROME_BUILD | 884 #endif // GOOGLE_CHROME_BUILD |
884 switches::kJavaScriptFlags, | 885 switches::kJavaScriptFlags, |
885 switches::kLoggingLevel, | 886 switches::kLoggingLevel, |
886 switches::kMemoryMetrics, | 887 switches::kMemoryMetrics, |
(...skipping 840 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1727 TRACE_EVENT0("renderer_host", | 1728 TRACE_EVENT0("renderer_host", |
1728 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost"); | 1729 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost"); |
1729 AcceleratedSurfaceMsg_BufferPresented_Params ack_params; | 1730 AcceleratedSurfaceMsg_BufferPresented_Params ack_params; |
1730 ack_params.sync_point = 0; | 1731 ack_params.sync_point = 0; |
1731 RenderWidgetHostImpl::AcknowledgeBufferPresent(route_id, | 1732 RenderWidgetHostImpl::AcknowledgeBufferPresent(route_id, |
1732 gpu_process_host_id, | 1733 gpu_process_host_id, |
1733 ack_params); | 1734 ack_params); |
1734 } | 1735 } |
1735 | 1736 |
1736 } // namespace content | 1737 } // namespace content |
OLD | NEW |