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

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

Issue 10918052: create a separate WebMediaPlayer for URL derived from media stream (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: code review Created 8 years, 2 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 | « no previous file | content/content_renderer.gypi » ('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 784 matching lines...) Expand 10 before | Expand all | Expand 10 after
795 switches::kEnableAccessibilityLogging, 795 switches::kEnableAccessibilityLogging,
796 switches::kEnableDCHECK, 796 switches::kEnableDCHECK,
797 switches::kEnableEncryptedMedia, 797 switches::kEnableEncryptedMedia,
798 switches::kEnableExperimentalWebKitFeatures, 798 switches::kEnableExperimentalWebKitFeatures,
799 switches::kEnableFixedLayout, 799 switches::kEnableFixedLayout,
800 switches::kEnableGPUServiceLogging, 800 switches::kEnableGPUServiceLogging,
801 switches::kEnableGPUClientLogging, 801 switches::kEnableGPUClientLogging,
802 switches::kEnableGpuBenchmarking, 802 switches::kEnableGpuBenchmarking,
803 switches::kEnableLogging, 803 switches::kEnableLogging,
804 switches::kDisableMediaSource, 804 switches::kDisableMediaSource,
805 switches::kEnableWebMediaPlayerMS,
805 switches::kEnablePartialSwap, 806 switches::kEnablePartialSwap,
806 switches::kEnablePerTilePainting, 807 switches::kEnablePerTilePainting,
807 switches::kEnableRendererSideMixing, 808 switches::kEnableRendererSideMixing,
808 switches::kEnableStrictSiteIsolation, 809 switches::kEnableStrictSiteIsolation,
809 switches::kDisableFullScreen, 810 switches::kDisableFullScreen,
810 switches::kEnablePepperTesting, 811 switches::kEnablePepperTesting,
811 switches::kEnablePreparsedJsCaching, 812 switches::kEnablePreparsedJsCaching,
812 switches::kEnablePruneGpuCommandBuffers, 813 switches::kEnablePruneGpuCommandBuffers,
813 switches::kEnablePinch, 814 switches::kEnablePinch,
814 #if defined(OS_MACOSX) 815 #if defined(OS_MACOSX)
(...skipping 750 matching lines...) Expand 10 before | Expand all | Expand 10 after
1565 const gfx::Size& size, 1566 const gfx::Size& size,
1566 int32 gpu_process_host_id) { 1567 int32 gpu_process_host_id) {
1567 TRACE_EVENT0("renderer_host", 1568 TRACE_EVENT0("renderer_host",
1568 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost"); 1569 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost");
1569 RenderWidgetHostImpl::AcknowledgeBufferPresent(route_id, 1570 RenderWidgetHostImpl::AcknowledgeBufferPresent(route_id,
1570 gpu_process_host_id, 1571 gpu_process_host_id,
1571 0); 1572 0);
1572 } 1573 }
1573 1574
1574 } // namespace content 1575 } // namespace content
OLDNEW
« no previous file with comments | « no previous file | content/content_renderer.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698