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

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

Issue 10915298: Add CCDelegatingRenderer, and corresponding IPCs (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: correct base Created 8 years, 3 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 758 matching lines...) Expand 10 before | Expand all | Expand 10 after
769 switches::kEnableWebAudio, 769 switches::kEnableWebAudio,
770 #else 770 #else
771 switches::kDisableWebAudio, 771 switches::kDisableWebAudio,
772 #endif 772 #endif
773 switches::kEnableWebAudioInput, 773 switches::kEnableWebAudioInput,
774 switches::kDisableWebSockets, 774 switches::kDisableWebSockets,
775 switches::kDomAutomationController, 775 switches::kDomAutomationController,
776 switches::kEnableAccessibilityLogging, 776 switches::kEnableAccessibilityLogging,
777 switches::kEnableCssExclusions, 777 switches::kEnableCssExclusions,
778 switches::kEnableDCHECK, 778 switches::kEnableDCHECK,
779 switches::kEnableDelegatedRenderer,
779 switches::kEnableEncryptedMedia, 780 switches::kEnableEncryptedMedia,
780 switches::kEnableFixedLayout, 781 switches::kEnableFixedLayout,
781 switches::kEnableGPUServiceLogging, 782 switches::kEnableGPUServiceLogging,
782 switches::kEnableGPUClientLogging, 783 switches::kEnableGPUClientLogging,
783 switches::kEnableGpuBenchmarking, 784 switches::kEnableGpuBenchmarking,
784 switches::kEnableLogging, 785 switches::kEnableLogging,
785 switches::kDisableMediaSource, 786 switches::kDisableMediaSource,
786 switches::kEnablePartialSwap, 787 switches::kEnablePartialSwap,
787 switches::kEnablePerTilePainting, 788 switches::kEnablePerTilePainting,
788 switches::kEnableRendererSideMixing, 789 switches::kEnableRendererSideMixing,
(...skipping 756 matching lines...) Expand 10 before | Expand all | Expand 10 after
1545 const gfx::Size& size, 1546 const gfx::Size& size,
1546 int32 gpu_process_host_id) { 1547 int32 gpu_process_host_id) {
1547 TRACE_EVENT0("renderer_host", 1548 TRACE_EVENT0("renderer_host",
1548 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost"); 1549 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost");
1549 RenderWidgetHostImpl::AcknowledgeBufferPresent(route_id, 1550 RenderWidgetHostImpl::AcknowledgeBufferPresent(route_id,
1550 gpu_process_host_id, 1551 gpu_process_host_id,
1551 0); 1552 0);
1552 } 1553 }
1553 1554
1554 } // namespace content 1555 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698