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 853 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
864 #endif | 864 #endif |
865 switches::kEnableSeccompSandbox, | 865 switches::kEnableSeccompSandbox, |
866 switches::kEnableSoftwareCompositingGLAdapter, | 866 switches::kEnableSoftwareCompositingGLAdapter, |
867 switches::kEnableStatsTable, | 867 switches::kEnableStatsTable, |
868 switches::kEnableThreadedCompositing, | 868 switches::kEnableThreadedCompositing, |
869 switches::kEnableCompositingForFixedPosition, | 869 switches::kEnableCompositingForFixedPosition, |
870 switches::kEnableHighDpiCompositingForFixedPosition, | 870 switches::kEnableHighDpiCompositingForFixedPosition, |
871 switches::kDisableCompositingForFixedPosition, | 871 switches::kDisableCompositingForFixedPosition, |
872 switches::kEnableAcceleratedPainting, | 872 switches::kEnableAcceleratedPainting, |
873 switches::kEnableTouchDragDrop, | 873 switches::kEnableTouchDragDrop, |
874 switches::kDisableTouchDragDrop, | |
sky
2013/04/24 14:44:23
Sort here too (I see there a bit out of sort now).
varunjain
2013/04/24 18:09:25
Done.
| |
874 switches::kEnableTouchEditing, | 875 switches::kEnableTouchEditing, |
876 switches::kDisableTouchEditing, | |
875 switches::kDisableThreadedCompositing, | 877 switches::kDisableThreadedCompositing, |
876 switches::kDisableTouchAdjustment, | 878 switches::kDisableTouchAdjustment, |
877 switches::kDefaultTileWidth, | 879 switches::kDefaultTileWidth, |
878 switches::kDefaultTileHeight, | 880 switches::kDefaultTileHeight, |
879 switches::kMaxUntiledLayerWidth, | 881 switches::kMaxUntiledLayerWidth, |
880 switches::kMaxUntiledLayerHeight, | 882 switches::kMaxUntiledLayerHeight, |
881 switches::kEnableViewport, | 883 switches::kEnableViewport, |
882 switches::kEnableOpusPlayback, | 884 switches::kEnableOpusPlayback, |
883 switches::kEnableVp9Playback, | 885 switches::kEnableVp9Playback, |
884 switches::kEnableVp8AlphaPlayback, | 886 switches::kEnableVp8AlphaPlayback, |
(...skipping 855 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1740 TRACE_EVENT0("renderer_host", | 1742 TRACE_EVENT0("renderer_host", |
1741 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost"); | 1743 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost"); |
1742 AcceleratedSurfaceMsg_BufferPresented_Params ack_params; | 1744 AcceleratedSurfaceMsg_BufferPresented_Params ack_params; |
1743 ack_params.sync_point = 0; | 1745 ack_params.sync_point = 0; |
1744 RenderWidgetHostImpl::AcknowledgeBufferPresent(route_id, | 1746 RenderWidgetHostImpl::AcknowledgeBufferPresent(route_id, |
1745 gpu_process_host_id, | 1747 gpu_process_host_id, |
1746 ack_params); | 1748 ack_params); |
1747 } | 1749 } |
1748 | 1750 |
1749 } // namespace content | 1751 } // namespace content |
OLD | NEW |