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

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

Issue 10636036: Enable renderer side mixing behind a flag. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Renderer Side Mixing! Created 8 years, 5 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
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 746 matching lines...) Expand 10 before | Expand all | Expand 10 after
757 switches::kEnableFixedLayout, 757 switches::kEnableFixedLayout,
758 switches::kEnableGamepad, 758 switches::kEnableGamepad,
759 switches::kEnableGPUServiceLogging, 759 switches::kEnableGPUServiceLogging,
760 switches::kEnableGPUClientLogging, 760 switches::kEnableGPUClientLogging,
761 switches::kEnableGpuBenchmarking, 761 switches::kEnableGpuBenchmarking,
762 switches::kEnableLogging, 762 switches::kEnableLogging,
763 switches::kEnableMediaSource, 763 switches::kEnableMediaSource,
764 switches::kEnablePartialSwap, 764 switches::kEnablePartialSwap,
765 switches::kEnablePeerConnection, 765 switches::kEnablePeerConnection,
766 switches::kEnablePerTilePainting, 766 switches::kEnablePerTilePainting,
767 switches::kEnableRendererSideMixing,
767 switches::kEnableShadowDOM, 768 switches::kEnableShadowDOM,
768 switches::kEnableStrictSiteIsolation, 769 switches::kEnableStrictSiteIsolation,
769 switches::kEnableStyleScoped, 770 switches::kEnableStyleScoped,
770 switches::kDisableFullScreen, 771 switches::kDisableFullScreen,
771 switches::kEnablePepperTesting, 772 switches::kEnablePepperTesting,
772 switches::kEnablePointerLock, 773 switches::kEnablePointerLock,
773 switches::kEnablePreparsedJsCaching, 774 switches::kEnablePreparsedJsCaching,
774 switches::kEnablePruneGpuCommandBuffers, 775 switches::kEnablePruneGpuCommandBuffers,
775 switches::kEnablePinch, 776 switches::kEnablePinch,
776 #if defined(OS_MACOSX) 777 #if defined(OS_MACOSX)
(...skipping 725 matching lines...) Expand 10 before | Expand all | Expand 10 after
1502 int32 route_id, 1503 int32 route_id,
1503 int32 gpu_process_host_id) { 1504 int32 gpu_process_host_id) {
1504 TRACE_EVENT0("renderer_host", 1505 TRACE_EVENT0("renderer_host",
1505 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost"); 1506 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost");
1506 RenderWidgetHostImpl::AcknowledgeBufferPresent(route_id, 1507 RenderWidgetHostImpl::AcknowledgeBufferPresent(route_id,
1507 gpu_process_host_id, 1508 gpu_process_host_id,
1508 0); 1509 0);
1509 } 1510 }
1510 1511
1511 } // namespace content 1512 } // namespace content
OLDNEW
« no previous file with comments | « no previous file | content/content_renderer.gypi » ('j') | content/renderer/media/audio_renderer_mixer_manager.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698