Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(121)

Side by Side Diff: content/browser/renderer_host/render_process_host_impl.cc

Issue 12079084: Add command line switch --enable-webrtc on Android. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: code review Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/browser/about_flags.cc ('k') | content/public/common/content_switches.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 740 matching lines...) Expand 10 before | Expand all | Expand 10 after
751 switches::kDisableJavaScriptI18NAPI, 751 switches::kDisableJavaScriptI18NAPI,
752 switches::kDisableLocalStorage, 752 switches::kDisableLocalStorage,
753 switches::kDisableLogging, 753 switches::kDisableLogging,
754 switches::kDisableSeccompFilterSandbox, 754 switches::kDisableSeccompFilterSandbox,
755 switches::kDisableSeccompSandbox, 755 switches::kDisableSeccompSandbox,
756 switches::kDisableSessionStorage, 756 switches::kDisableSessionStorage,
757 switches::kDisableSharedWorkers, 757 switches::kDisableSharedWorkers,
758 switches::kDisableSpeechInput, 758 switches::kDisableSpeechInput,
759 #if defined(OS_ANDROID) 759 #if defined(OS_ANDROID)
760 switches::kEnableWebAudio, 760 switches::kEnableWebAudio,
761 switches::kEnableWebRTC,
761 #else 762 #else
762 switches::kDisableWebAudio, 763 switches::kDisableWebAudio,
763 #endif 764 #endif
764 switches::kEnableWebAudioInput, 765 switches::kEnableWebAudioInput,
765 switches::kDisableWebSockets, 766 switches::kDisableWebSockets,
766 switches::kDomAutomationController, 767 switches::kDomAutomationController,
767 switches::kEnableAccessibilityLogging, 768 switches::kEnableAccessibilityLogging,
768 switches::kEnableBrowserPluginCompositing, 769 switches::kEnableBrowserPluginCompositing,
769 switches::kEnableBrowserPluginForAllViewTypes, 770 switches::kEnableBrowserPluginForAllViewTypes,
770 switches::kEnableCssTransformPinch, 771 switches::kEnableCssTransformPinch,
(...skipping 839 matching lines...) Expand 10 before | Expand all | Expand 10 after
1610 TRACE_EVENT0("renderer_host", 1611 TRACE_EVENT0("renderer_host",
1611 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost"); 1612 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost");
1612 AcceleratedSurfaceMsg_BufferPresented_Params ack_params; 1613 AcceleratedSurfaceMsg_BufferPresented_Params ack_params;
1613 ack_params.sync_point = 0; 1614 ack_params.sync_point = 0;
1614 RenderWidgetHostImpl::AcknowledgeBufferPresent(route_id, 1615 RenderWidgetHostImpl::AcknowledgeBufferPresent(route_id,
1615 gpu_process_host_id, 1616 gpu_process_host_id,
1616 ack_params); 1617 ack_params);
1617 } 1618 }
1618 1619
1619 } // namespace content 1620 } // namespace content
OLDNEW
« no previous file with comments | « chrome/browser/about_flags.cc ('k') | content/public/common/content_switches.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698