| 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 653 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 664 switches::kDisableDatabases, | 664 switches::kDisableDatabases, |
| 665 switches::kDisableDesktopNotifications, | 665 switches::kDisableDesktopNotifications, |
| 666 switches::kDisableDeviceOrientation, | 666 switches::kDisableDeviceOrientation, |
| 667 switches::kDisableFileSystem, | 667 switches::kDisableFileSystem, |
| 668 switches::kDisableGeolocation, | 668 switches::kDisableGeolocation, |
| 669 switches::kDisableGLMultisampling, | 669 switches::kDisableGLMultisampling, |
| 670 switches::kDisableGpuVsync, | 670 switches::kDisableGpuVsync, |
| 671 switches::kDisableJavaScriptI18NAPI, | 671 switches::kDisableJavaScriptI18NAPI, |
| 672 switches::kDisableLocalStorage, | 672 switches::kDisableLocalStorage, |
| 673 switches::kDisableLogging, | 673 switches::kDisableLogging, |
| 674 switches::kDisablePointerLock, | |
| 675 switches::kDisableSeccompFilterSandbox, | 674 switches::kDisableSeccompFilterSandbox, |
| 676 switches::kDisableSeccompSandbox, | 675 switches::kDisableSeccompSandbox, |
| 677 switches::kDisableSessionStorage, | 676 switches::kDisableSessionStorage, |
| 678 switches::kDisableSharedWorkers, | 677 switches::kDisableSharedWorkers, |
| 679 switches::kDisableSpeechInput, | 678 switches::kDisableSpeechInput, |
| 680 switches::kEnableScriptedSpeech, | 679 switches::kEnableScriptedSpeech, |
| 681 switches::kDisableThreadedAnimation, | 680 switches::kDisableThreadedAnimation, |
| 682 switches::kDisableWebAudio, | 681 switches::kDisableWebAudio, |
| 683 switches::kDisableWebSockets, | 682 switches::kDisableWebSockets, |
| 684 switches::kDomAutomationController, | 683 switches::kDomAutomationController, |
| (...skipping 707 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1392 uint64 surface_handle, | 1391 uint64 surface_handle, |
| 1393 int32 route_id, | 1392 int32 route_id, |
| 1394 int32 gpu_process_host_id) { | 1393 int32 gpu_process_host_id) { |
| 1395 TRACE_EVENT0("renderer_host", | 1394 TRACE_EVENT0("renderer_host", |
| 1396 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost"); | 1395 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost"); |
| 1397 RenderWidgetHostImpl::AcknowledgeBufferPresent(route_id, | 1396 RenderWidgetHostImpl::AcknowledgeBufferPresent(route_id, |
| 1398 gpu_process_host_id); | 1397 gpu_process_host_id); |
| 1399 } | 1398 } |
| 1400 | 1399 |
| 1401 } // namespace content | 1400 } // namespace content |
| OLD | NEW |