| 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 #if defined(OS_WIN) | 10 #if defined(OS_WIN) |
| (...skipping 689 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 700 // Allow this to be set when invoking the browser and relayed along. | 700 // Allow this to be set when invoking the browser and relayed along. |
| 701 switches::kEnableSandboxLogging, | 701 switches::kEnableSandboxLogging, |
| 702 #endif | 702 #endif |
| 703 switches::kEnableSeccompSandbox, | 703 switches::kEnableSeccompSandbox, |
| 704 switches::kEnableStatsTable, | 704 switches::kEnableStatsTable, |
| 705 switches::kEnableThreadedCompositing, | 705 switches::kEnableThreadedCompositing, |
| 706 switches::kDisableThreadedCompositing, | 706 switches::kDisableThreadedCompositing, |
| 707 switches::kEnableTouchEvents, | 707 switches::kEnableTouchEvents, |
| 708 switches::kEnableVideoTrack, | 708 switches::kEnableVideoTrack, |
| 709 switches::kEnableViewport, | 709 switches::kEnableViewport, |
| 710 switches::kForceDeviceScaleFactor, |
| 710 switches::kFullMemoryCrashReport, | 711 switches::kFullMemoryCrashReport, |
| 711 #if !defined (GOOGLE_CHROME_BUILD) | 712 #if !defined (GOOGLE_CHROME_BUILD) |
| 712 // These are unsupported and not fully tested modes, so don't enable them | 713 // These are unsupported and not fully tested modes, so don't enable them |
| 713 // for official Google Chrome builds. | 714 // for official Google Chrome builds. |
| 714 switches::kInProcessPlugins, | 715 switches::kInProcessPlugins, |
| 715 #endif // GOOGLE_CHROME_BUILD | 716 #endif // GOOGLE_CHROME_BUILD |
| 716 switches::kInProcessWebGL, | 717 switches::kInProcessWebGL, |
| 717 switches::kJavaScriptFlags, | 718 switches::kJavaScriptFlags, |
| 718 switches::kLoggingLevel, | 719 switches::kLoggingLevel, |
| 719 switches::kNewCheckboxStyle, | 720 switches::kNewCheckboxStyle, |
| (...skipping 652 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1372 uint64 surface_handle, | 1373 uint64 surface_handle, |
| 1373 int32 route_id, | 1374 int32 route_id, |
| 1374 int32 gpu_process_host_id) { | 1375 int32 gpu_process_host_id) { |
| 1375 TRACE_EVENT0("renderer_host", | 1376 TRACE_EVENT0("renderer_host", |
| 1376 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost"); | 1377 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost"); |
| 1377 RenderWidgetHostImpl::AcknowledgeSwapBuffers(route_id, | 1378 RenderWidgetHostImpl::AcknowledgeSwapBuffers(route_id, |
| 1378 gpu_process_host_id); | 1379 gpu_process_host_id); |
| 1379 } | 1380 } |
| 1380 | 1381 |
| 1381 } // namespace content | 1382 } // namespace content |
| OLD | NEW |