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

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

Issue 10379003: enable media stream by default. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: remove IDS_FLAGS_MEDIA_STREAM_DESCRIPTION in grd file Created 8 years, 7 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_frame/test/policy_settings_unittest.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 #if defined(OS_WIN) 10 #if defined(OS_WIN)
(...skipping 673 matching lines...) Expand 10 before | Expand all | Expand 10 after
684 switches::kEnableAccessibilityLogging, 684 switches::kEnableAccessibilityLogging,
685 switches::kEnableBrowserPlugin, 685 switches::kEnableBrowserPlugin,
686 switches::kEnableDCHECK, 686 switches::kEnableDCHECK,
687 switches::kEnableEncryptedMedia, 687 switches::kEnableEncryptedMedia,
688 switches::kEnableFixedLayout, 688 switches::kEnableFixedLayout,
689 switches::kEnableGamepad, 689 switches::kEnableGamepad,
690 switches::kEnableGPUServiceLogging, 690 switches::kEnableGPUServiceLogging,
691 switches::kEnableGPUClientLogging, 691 switches::kEnableGPUClientLogging,
692 switches::kEnableLogging, 692 switches::kEnableLogging,
693 switches::kEnableMediaSource, 693 switches::kEnableMediaSource,
694 switches::kEnableMediaStream,
695 switches::kEnablePeerConnection, 694 switches::kEnablePeerConnection,
696 switches::kEnableShadowDOM, 695 switches::kEnableShadowDOM,
697 switches::kEnableStrictSiteIsolation, 696 switches::kEnableStrictSiteIsolation,
698 switches::kEnableStyleScoped, 697 switches::kEnableStyleScoped,
699 switches::kDisableFullScreen, 698 switches::kDisableFullScreen,
700 switches::kEnablePepperTesting, 699 switches::kEnablePepperTesting,
701 switches::kEnablePointerLock, 700 switches::kEnablePointerLock,
702 switches::kEnablePreparsedJsCaching, 701 switches::kEnablePreparsedJsCaching,
703 switches::kEnablePruneGpuCommandBuffers, 702 switches::kEnablePruneGpuCommandBuffers,
704 #if defined(OS_MACOSX) 703 #if defined(OS_MACOSX)
(...skipping 673 matching lines...) Expand 10 before | Expand all | Expand 10 after
1378 void RenderProcessHostImpl::OnCompositorSurfaceBuffersSwappedNoHost( 1377 void RenderProcessHostImpl::OnCompositorSurfaceBuffersSwappedNoHost(
1379 int32 surface_id, 1378 int32 surface_id,
1380 uint64 surface_handle, 1379 uint64 surface_handle,
1381 int32 route_id, 1380 int32 route_id,
1382 int32 gpu_process_host_id) { 1381 int32 gpu_process_host_id) {
1383 TRACE_EVENT0("renderer_host", 1382 TRACE_EVENT0("renderer_host",
1384 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost"); 1383 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost");
1385 RenderWidgetHostImpl::AcknowledgeSwapBuffers(route_id, 1384 RenderWidgetHostImpl::AcknowledgeSwapBuffers(route_id,
1386 gpu_process_host_id); 1385 gpu_process_host_id);
1387 } 1386 }
OLDNEW
« no previous file with comments | « chrome_frame/test/policy_settings_unittest.cc ('k') | content/public/common/content_switches.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698