| 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 783 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 794 #endif | 794 #endif |
| 795 switches::kEnableSeccompSandbox, | 795 switches::kEnableSeccompSandbox, |
| 796 switches::kEnableSoftwareCompositingGLAdapter, | 796 switches::kEnableSoftwareCompositingGLAdapter, |
| 797 switches::kEnableStatsTable, | 797 switches::kEnableStatsTable, |
| 798 switches::kEnableThreadedCompositing, | 798 switches::kEnableThreadedCompositing, |
| 799 switches::kEnableTouchDragDrop, | 799 switches::kEnableTouchDragDrop, |
| 800 switches::kDisableThreadedCompositing, | 800 switches::kDisableThreadedCompositing, |
| 801 switches::kDisableTouchAdjustment, | 801 switches::kDisableTouchAdjustment, |
| 802 switches::kEnableViewport, | 802 switches::kEnableViewport, |
| 803 switches::kEnableOpusPlayback, | 803 switches::kEnableOpusPlayback, |
| 804 switches::kEnableVp9Playback, | |
| 805 switches::kForceDeviceScaleFactor, | 804 switches::kForceDeviceScaleFactor, |
| 806 switches::kFullMemoryCrashReport, | 805 switches::kFullMemoryCrashReport, |
| 807 #if !defined (GOOGLE_CHROME_BUILD) | 806 #if !defined (GOOGLE_CHROME_BUILD) |
| 808 // These are unsupported and not fully tested modes, so don't enable them | 807 // These are unsupported and not fully tested modes, so don't enable them |
| 809 // for official Google Chrome builds. | 808 // for official Google Chrome builds. |
| 810 switches::kInProcessPlugins, | 809 switches::kInProcessPlugins, |
| 811 #endif // GOOGLE_CHROME_BUILD | 810 #endif // GOOGLE_CHROME_BUILD |
| 812 switches::kInProcessWebGL, | 811 switches::kInProcessWebGL, |
| 813 switches::kJavaScriptFlags, | 812 switches::kJavaScriptFlags, |
| 814 switches::kLoggingLevel, | 813 switches::kLoggingLevel, |
| (...skipping 785 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1600 TRACE_EVENT0("renderer_host", | 1599 TRACE_EVENT0("renderer_host", |
| 1601 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost"); | 1600 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost"); |
| 1602 AcceleratedSurfaceMsg_BufferPresented_Params ack_params; | 1601 AcceleratedSurfaceMsg_BufferPresented_Params ack_params; |
| 1603 ack_params.sync_point = 0; | 1602 ack_params.sync_point = 0; |
| 1604 RenderWidgetHostImpl::AcknowledgeBufferPresent(route_id, | 1603 RenderWidgetHostImpl::AcknowledgeBufferPresent(route_id, |
| 1605 gpu_process_host_id, | 1604 gpu_process_host_id, |
| 1606 ack_params); | 1605 ack_params); |
| 1607 } | 1606 } |
| 1608 | 1607 |
| 1609 } // namespace content | 1608 } // namespace content |
| OLD | NEW |