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 773 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
784 switches::kDisableGLMultisampling, | 784 switches::kDisableGLMultisampling, |
785 switches::kDisableGpuVsync, | 785 switches::kDisableGpuVsync, |
786 switches::kDisableJavaScriptI18NAPI, | 786 switches::kDisableJavaScriptI18NAPI, |
787 switches::kDisableLocalStorage, | 787 switches::kDisableLocalStorage, |
788 switches::kDisableLogging, | 788 switches::kDisableLogging, |
789 switches::kDisableSeccompFilterSandbox, | 789 switches::kDisableSeccompFilterSandbox, |
790 switches::kDisableSeccompSandbox, | 790 switches::kDisableSeccompSandbox, |
791 switches::kDisableSessionStorage, | 791 switches::kDisableSessionStorage, |
792 switches::kDisableSharedWorkers, | 792 switches::kDisableSharedWorkers, |
793 switches::kDisableSpeechInput, | 793 switches::kDisableSpeechInput, |
794 switches::kEnableScriptedSpeech, | |
795 #if defined(OS_ANDROID) | 794 #if defined(OS_ANDROID) |
796 switches::kEnableWebAudio, | 795 switches::kEnableWebAudio, |
797 #else | 796 #else |
798 switches::kDisableWebAudio, | 797 switches::kDisableWebAudio, |
799 #endif | 798 #endif |
800 switches::kEnableWebAudioInput, | 799 switches::kEnableWebAudioInput, |
801 switches::kDisableWebSockets, | 800 switches::kDisableWebSockets, |
802 switches::kDomAutomationController, | 801 switches::kDomAutomationController, |
803 switches::kEnableAccessibilityLogging, | 802 switches::kEnableAccessibilityLogging, |
804 switches::kEnableBrowserPluginForAllViewTypes, | 803 switches::kEnableBrowserPluginForAllViewTypes, |
(...skipping 810 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1615 int32 gpu_process_host_id) { | 1614 int32 gpu_process_host_id) { |
1616 TRACE_EVENT0("renderer_host", | 1615 TRACE_EVENT0("renderer_host", |
1617 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost"); | 1616 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost"); |
1618 RenderWidgetHostImpl::AcknowledgeBufferPresent(route_id, | 1617 RenderWidgetHostImpl::AcknowledgeBufferPresent(route_id, |
1619 gpu_process_host_id, | 1618 gpu_process_host_id, |
1620 false, | 1619 false, |
1621 0); | 1620 0); |
1622 } | 1621 } |
1623 | 1622 |
1624 } // namespace content | 1623 } // namespace content |
OLD | NEW |