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

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

Issue 10873099: Flag and adapter class for software compositing. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Rebase 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
« 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 798 matching lines...) Expand 10 before | Expand all | Expand 10 after
809 switches::kDisableFullScreen, 809 switches::kDisableFullScreen,
810 switches::kEnablePepperTesting, 810 switches::kEnablePepperTesting,
811 switches::kEnablePreparsedJsCaching, 811 switches::kEnablePreparsedJsCaching,
812 switches::kEnablePruneGpuCommandBuffers, 812 switches::kEnablePruneGpuCommandBuffers,
813 switches::kEnablePinch, 813 switches::kEnablePinch,
814 #if defined(OS_MACOSX) 814 #if defined(OS_MACOSX)
815 // Allow this to be set when invoking the browser and relayed along. 815 // Allow this to be set when invoking the browser and relayed along.
816 switches::kEnableSandboxLogging, 816 switches::kEnableSandboxLogging,
817 #endif 817 #endif
818 switches::kEnableSeccompSandbox, 818 switches::kEnableSeccompSandbox,
819 switches::kEnableSoftwareCompositingGLAdapter,
819 switches::kEnableStatsTable, 820 switches::kEnableStatsTable,
820 switches::kEnableThreadedCompositing, 821 switches::kEnableThreadedCompositing,
821 switches::kDisableThreadedCompositing, 822 switches::kDisableThreadedCompositing,
822 switches::kEnableTouchEvents, 823 switches::kEnableTouchEvents,
823 switches::kEnableViewport, 824 switches::kEnableViewport,
824 switches::kForceDeviceScaleFactor, 825 switches::kForceDeviceScaleFactor,
825 switches::kFullMemoryCrashReport, 826 switches::kFullMemoryCrashReport,
826 #if !defined (GOOGLE_CHROME_BUILD) 827 #if !defined (GOOGLE_CHROME_BUILD)
827 // These are unsupported and not fully tested modes, so don't enable them 828 // These are unsupported and not fully tested modes, so don't enable them
828 // for official Google Chrome builds. 829 // for official Google Chrome builds.
(...skipping 736 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