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

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

Issue 11052019: <browser> Make new implementation the default. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove flag from chrome://flags, add platform app check for both implementation. 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 | 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 776 matching lines...) Expand 10 before | Expand all | Expand 10 after
787 switches::kDisableThreadedAnimation, 787 switches::kDisableThreadedAnimation,
788 #if defined(OS_ANDROID) 788 #if defined(OS_ANDROID)
789 switches::kEnableWebAudio, 789 switches::kEnableWebAudio,
790 #else 790 #else
791 switches::kDisableWebAudio, 791 switches::kDisableWebAudio,
792 #endif 792 #endif
793 switches::kEnableWebAudioInput, 793 switches::kEnableWebAudioInput,
794 switches::kDisableWebSockets, 794 switches::kDisableWebSockets,
795 switches::kDomAutomationController, 795 switches::kDomAutomationController,
796 switches::kEnableAccessibilityLogging, 796 switches::kEnableAccessibilityLogging,
797 switches::kEnableBrowserPluginOldImplementation,
797 switches::kEnableDCHECK, 798 switches::kEnableDCHECK,
798 switches::kEnableEncryptedMedia, 799 switches::kEnableEncryptedMedia,
799 switches::kEnableExperimentalWebKitFeatures, 800 switches::kEnableExperimentalWebKitFeatures,
800 switches::kEnableFixedLayout, 801 switches::kEnableFixedLayout,
801 switches::kEnableGPUServiceLogging, 802 switches::kEnableGPUServiceLogging,
802 switches::kEnableGPUClientLogging, 803 switches::kEnableGPUClientLogging,
803 switches::kEnableGpuBenchmarking, 804 switches::kEnableGpuBenchmarking,
804 switches::kEnableLogging, 805 switches::kEnableLogging,
805 switches::kDisableMediaSource, 806 switches::kDisableMediaSource,
806 switches::kEnableWebMediaPlayerMS, 807 switches::kEnableWebMediaPlayerMS,
(...skipping 761 matching lines...) Expand 10 before | Expand all | Expand 10 after
1568 const gfx::Size& size, 1569 const gfx::Size& size,
1569 int32 gpu_process_host_id) { 1570 int32 gpu_process_host_id) {
1570 TRACE_EVENT0("renderer_host", 1571 TRACE_EVENT0("renderer_host",
1571 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost"); 1572 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost");
1572 RenderWidgetHostImpl::AcknowledgeBufferPresent(route_id, 1573 RenderWidgetHostImpl::AcknowledgeBufferPresent(route_id,
1573 gpu_process_host_id, 1574 gpu_process_host_id,
1574 0); 1575 0);
1575 } 1576 }
1576 1577
1577 } // namespace content 1578 } // namespace content
OLDNEW
« no previous file with comments | « chrome/renderer/resources/renderer_resources.grd ('k') | content/public/common/content_constants.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698