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

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

Issue 14643005: Add the "experimental canvas features" flag, and plumb it through to (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 7 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/public/common/content_switches.h » ('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 #include <algorithm> 10 #include <algorithm>
(...skipping 810 matching lines...) Expand 10 before | Expand all | Expand 10 after
821 switches::kDisableSpeechInput, 821 switches::kDisableSpeechInput,
822 switches::kDisableTouchDragDrop, 822 switches::kDisableTouchDragDrop,
823 switches::kDisableTouchEditing, 823 switches::kDisableTouchEditing,
824 #if defined(OS_ANDROID) 824 #if defined(OS_ANDROID)
825 switches::kEnableWebAudio, 825 switches::kEnableWebAudio,
826 switches::kDisableWebRTC, 826 switches::kDisableWebRTC,
827 #else 827 #else
828 switches::kDisableWebAudio, 828 switches::kDisableWebAudio,
829 #endif 829 #endif
830 switches::kEnableWebMIDI, 830 switches::kEnableWebMIDI,
831 switches::kEnableExperimentalCanvasFeatures,
831 switches::kEnableExperimentalWebSocket, 832 switches::kEnableExperimentalWebSocket,
832 switches::kDomAutomationController, 833 switches::kDomAutomationController,
833 switches::kEnableAccessibilityLogging, 834 switches::kEnableAccessibilityLogging,
834 switches::kEnableBrowserPluginForAllViewTypes, 835 switches::kEnableBrowserPluginForAllViewTypes,
835 switches::kEnableDCHECK, 836 switches::kEnableDCHECK,
836 switches::kEnableDelegatedRenderer, 837 switches::kEnableDelegatedRenderer,
837 switches::kDisableEncryptedMedia, 838 switches::kDisableEncryptedMedia,
838 switches::kEnableExperimentalWebKitFeatures, 839 switches::kEnableExperimentalWebKitFeatures,
839 switches::kEnableFixedLayout, 840 switches::kEnableFixedLayout,
840 switches::kEnableDeferredImageDecoding, 841 switches::kEnableDeferredImageDecoding,
(...skipping 899 matching lines...) Expand 10 before | Expand all | Expand 10 after
1740 TRACE_EVENT0("renderer_host", 1741 TRACE_EVENT0("renderer_host",
1741 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost"); 1742 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost");
1742 AcceleratedSurfaceMsg_BufferPresented_Params ack_params; 1743 AcceleratedSurfaceMsg_BufferPresented_Params ack_params;
1743 ack_params.sync_point = 0; 1744 ack_params.sync_point = 0;
1744 RenderWidgetHostImpl::AcknowledgeBufferPresent(route_id, 1745 RenderWidgetHostImpl::AcknowledgeBufferPresent(route_id,
1745 gpu_process_host_id, 1746 gpu_process_host_id,
1746 ack_params); 1747 ack_params);
1747 } 1748 }
1748 1749
1749 } // namespace content 1750 } // namespace content
OLDNEW
« no previous file with comments | « chrome/browser/about_flags.cc ('k') | content/public/common/content_switches.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698