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

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

Issue 10917269: Use a single flag for enabling experimental WebKit features. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase 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
« no previous file with comments | « chrome/browser/about_flags.cc ('k') | content/browser/web_contents/web_contents_impl.cc » ('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 756 matching lines...) Expand 10 before | Expand all | Expand 10 after
767 switches::kDisableThreadedAnimation, 767 switches::kDisableThreadedAnimation,
768 #if defined(OS_ANDROID) 768 #if defined(OS_ANDROID)
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,
778 switches::kEnableDCHECK, 777 switches::kEnableDCHECK,
779 switches::kEnableEncryptedMedia, 778 switches::kEnableEncryptedMedia,
779 switches::kEnableExperimentalWebKitFeatures,
780 switches::kEnableFixedLayout, 780 switches::kEnableFixedLayout,
781 switches::kEnableGPUServiceLogging, 781 switches::kEnableGPUServiceLogging,
782 switches::kEnableGPUClientLogging, 782 switches::kEnableGPUClientLogging,
783 switches::kEnableGpuBenchmarking, 783 switches::kEnableGpuBenchmarking,
784 switches::kEnableLogging, 784 switches::kEnableLogging,
785 switches::kDisableMediaSource, 785 switches::kDisableMediaSource,
786 switches::kEnablePartialSwap, 786 switches::kEnablePartialSwap,
787 switches::kEnablePerTilePainting, 787 switches::kEnablePerTilePainting,
788 switches::kEnableRendererSideMixing, 788 switches::kEnableRendererSideMixing,
789 switches::kEnableShadowDOM,
790 switches::kEnableStrictSiteIsolation, 789 switches::kEnableStrictSiteIsolation,
791 switches::kEnableStyleScoped,
792 switches::kDisableFullScreen, 790 switches::kDisableFullScreen,
793 switches::kEnablePepperTesting, 791 switches::kEnablePepperTesting,
794 switches::kEnablePointerLock, 792 switches::kEnablePointerLock,
795 switches::kEnablePreparsedJsCaching, 793 switches::kEnablePreparsedJsCaching,
796 switches::kEnablePruneGpuCommandBuffers, 794 switches::kEnablePruneGpuCommandBuffers,
797 switches::kEnablePinch, 795 switches::kEnablePinch,
798 #if defined(OS_MACOSX) 796 #if defined(OS_MACOSX)
799 // Allow this to be set when invoking the browser and relayed along. 797 // Allow this to be set when invoking the browser and relayed along.
800 switches::kEnableSandboxLogging, 798 switches::kEnableSandboxLogging,
801 #endif 799 #endif
(...skipping 743 matching lines...) Expand 10 before | Expand all | Expand 10 after
1545 const gfx::Size& size, 1543 const gfx::Size& size,
1546 int32 gpu_process_host_id) { 1544 int32 gpu_process_host_id) {
1547 TRACE_EVENT0("renderer_host", 1545 TRACE_EVENT0("renderer_host",
1548 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost"); 1546 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost");
1549 RenderWidgetHostImpl::AcknowledgeBufferPresent(route_id, 1547 RenderWidgetHostImpl::AcknowledgeBufferPresent(route_id,
1550 gpu_process_host_id, 1548 gpu_process_host_id,
1551 0); 1549 0);
1552 } 1550 }
1553 1551
1554 } // namespace content 1552 } // namespace content
OLDNEW
« no previous file with comments | « chrome/browser/about_flags.cc ('k') | content/browser/web_contents/web_contents_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698