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

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

Issue 11414308: Add vsync notification command line switch (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Move setting to content. Created 7 years, 9 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 #include <algorithm> 10 #include <algorithm>
(...skipping 806 matching lines...) Expand 10 before | Expand all | Expand 10 after
817 switches::kDisableEncryptedMedia, 817 switches::kDisableEncryptedMedia,
818 switches::kEnableExperimentalWebKitFeatures, 818 switches::kEnableExperimentalWebKitFeatures,
819 switches::kEnableFixedLayout, 819 switches::kEnableFixedLayout,
820 switches::kEnableDeferredImageDecoding, 820 switches::kEnableDeferredImageDecoding,
821 switches::kEnableGPUServiceLogging, 821 switches::kEnableGPUServiceLogging,
822 switches::kEnableGPUClientLogging, 822 switches::kEnableGPUClientLogging,
823 switches::kEnableGpuClientTracing, 823 switches::kEnableGpuClientTracing,
824 switches::kEnableGpuBenchmarking, 824 switches::kEnableGpuBenchmarking,
825 switches::kEnableMemoryBenchmarking, 825 switches::kEnableMemoryBenchmarking,
826 switches::kEnableLogging, 826 switches::kEnableLogging,
827 switches::kEnableVsyncNotification,
827 switches::kDisableMediaSource, 828 switches::kDisableMediaSource,
828 switches::kDisableRendererSideMixing, 829 switches::kDisableRendererSideMixing,
829 switches::kEnableStrictSiteIsolation, 830 switches::kEnableStrictSiteIsolation,
830 switches::kDisableFullScreen, 831 switches::kDisableFullScreen,
831 switches::kEnableNewDialogStyle, 832 switches::kEnableNewDialogStyle,
832 #if defined(ENABLE_PLUGINS) 833 #if defined(ENABLE_PLUGINS)
833 switches::kEnablePepperTesting, 834 switches::kEnablePepperTesting,
834 #endif 835 #endif
835 switches::kEnablePreparsedJsCaching, 836 switches::kEnablePreparsedJsCaching,
836 switches::kEnablePruneGpuCommandBuffers, 837 switches::kEnablePruneGpuCommandBuffers,
(...skipping 868 matching lines...) Expand 10 before | Expand all | Expand 10 after
1705 TRACE_EVENT0("renderer_host", 1706 TRACE_EVENT0("renderer_host",
1706 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost"); 1707 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost");
1707 AcceleratedSurfaceMsg_BufferPresented_Params ack_params; 1708 AcceleratedSurfaceMsg_BufferPresented_Params ack_params;
1708 ack_params.sync_point = 0; 1709 ack_params.sync_point = 0;
1709 RenderWidgetHostImpl::AcknowledgeBufferPresent(route_id, 1710 RenderWidgetHostImpl::AcknowledgeBufferPresent(route_id,
1710 gpu_process_host_id, 1711 gpu_process_host_id,
1711 ack_params); 1712 ack_params);
1712 } 1713 }
1713 1714
1714 } // namespace content 1715 } // namespace content
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/login/chrome_restart_request.cc ('k') | content/public/common/content_switches.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698