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 866 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
877 switches::kDisableThreadedCompositing, | 877 switches::kDisableThreadedCompositing, |
878 switches::kDisableTouchAdjustment, | 878 switches::kDisableTouchAdjustment, |
879 switches::kDefaultTileWidth, | 879 switches::kDefaultTileWidth, |
880 switches::kDefaultTileHeight, | 880 switches::kDefaultTileHeight, |
881 switches::kMaxUntiledLayerWidth, | 881 switches::kMaxUntiledLayerWidth, |
882 switches::kMaxUntiledLayerHeight, | 882 switches::kMaxUntiledLayerHeight, |
883 switches::kEnableViewport, | 883 switches::kEnableViewport, |
884 switches::kEnableOpusPlayback, | 884 switches::kEnableOpusPlayback, |
885 switches::kEnableVp9Playback, | 885 switches::kEnableVp9Playback, |
886 switches::kEnableVp8AlphaPlayback, | 886 switches::kEnableVp8AlphaPlayback, |
| 887 switches::kEnableEac3Playback, |
887 switches::kForceDeviceScaleFactor, | 888 switches::kForceDeviceScaleFactor, |
888 switches::kFullMemoryCrashReport, | 889 switches::kFullMemoryCrashReport, |
889 #if !defined (GOOGLE_CHROME_BUILD) | 890 #if !defined (GOOGLE_CHROME_BUILD) |
890 // These are unsupported and not fully tested modes, so don't enable them | 891 // These are unsupported and not fully tested modes, so don't enable them |
891 // for official Google Chrome builds. | 892 // for official Google Chrome builds. |
892 switches::kInProcessPlugins, | 893 switches::kInProcessPlugins, |
893 #endif // GOOGLE_CHROME_BUILD | 894 #endif // GOOGLE_CHROME_BUILD |
894 switches::kJavaScriptFlags, | 895 switches::kJavaScriptFlags, |
895 switches::kLoggingLevel, | 896 switches::kLoggingLevel, |
896 switches::kMemoryMetrics, | 897 switches::kMemoryMetrics, |
(...skipping 844 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1741 TRACE_EVENT0("renderer_host", | 1742 TRACE_EVENT0("renderer_host", |
1742 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost"); | 1743 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost"); |
1743 AcceleratedSurfaceMsg_BufferPresented_Params ack_params; | 1744 AcceleratedSurfaceMsg_BufferPresented_Params ack_params; |
1744 ack_params.sync_point = 0; | 1745 ack_params.sync_point = 0; |
1745 RenderWidgetHostImpl::AcknowledgeBufferPresent(route_id, | 1746 RenderWidgetHostImpl::AcknowledgeBufferPresent(route_id, |
1746 gpu_process_host_id, | 1747 gpu_process_host_id, |
1747 ack_params); | 1748 ack_params); |
1748 } | 1749 } |
1749 | 1750 |
1750 } // namespace content | 1751 } // namespace content |
OLD | NEW |