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 729 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
740 switches::kDisableLocalStorage, | 740 switches::kDisableLocalStorage, |
741 switches::kDisableLogging, | 741 switches::kDisableLogging, |
742 switches::kDisablePointerLock, | 742 switches::kDisablePointerLock, |
743 switches::kDisableSeccompFilterSandbox, | 743 switches::kDisableSeccompFilterSandbox, |
744 switches::kDisableSeccompSandbox, | 744 switches::kDisableSeccompSandbox, |
745 switches::kDisableSessionStorage, | 745 switches::kDisableSessionStorage, |
746 switches::kDisableSharedWorkers, | 746 switches::kDisableSharedWorkers, |
747 switches::kDisableSpeechInput, | 747 switches::kDisableSpeechInput, |
748 switches::kEnableScriptedSpeech, | 748 switches::kEnableScriptedSpeech, |
749 switches::kDisableThreadedAnimation, | 749 switches::kDisableThreadedAnimation, |
| 750 #if defined(OS_ANDROID) |
| 751 switches::kEnableWebAudio, |
| 752 #else |
750 switches::kDisableWebAudio, | 753 switches::kDisableWebAudio, |
| 754 #endif |
751 switches::kDisableWebSockets, | 755 switches::kDisableWebSockets, |
752 switches::kDomAutomationController, | 756 switches::kDomAutomationController, |
753 switches::kEnableAcceleratedVideoDecode, | 757 switches::kEnableAcceleratedVideoDecode, |
754 switches::kEnableAccessibilityLogging, | 758 switches::kEnableAccessibilityLogging, |
755 switches::kEnableDCHECK, | 759 switches::kEnableDCHECK, |
756 switches::kEnableEncryptedMedia, | 760 switches::kEnableEncryptedMedia, |
757 switches::kEnableFixedLayout, | 761 switches::kEnableFixedLayout, |
758 switches::kEnableGPUServiceLogging, | 762 switches::kEnableGPUServiceLogging, |
759 switches::kEnableGPUClientLogging, | 763 switches::kEnableGPUClientLogging, |
760 switches::kEnableGpuBenchmarking, | 764 switches::kEnableGpuBenchmarking, |
(...skipping 741 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1502 int32 route_id, | 1506 int32 route_id, |
1503 int32 gpu_process_host_id) { | 1507 int32 gpu_process_host_id) { |
1504 TRACE_EVENT0("renderer_host", | 1508 TRACE_EVENT0("renderer_host", |
1505 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost"); | 1509 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost"); |
1506 RenderWidgetHostImpl::AcknowledgeBufferPresent(route_id, | 1510 RenderWidgetHostImpl::AcknowledgeBufferPresent(route_id, |
1507 gpu_process_host_id, | 1511 gpu_process_host_id, |
1508 0); | 1512 0); |
1509 } | 1513 } |
1510 | 1514 |
1511 } // namespace content | 1515 } // namespace content |
OLD | NEW |