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

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

Issue 13936002: Add a runtime flag to enable an experimental WebSocket implementation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Move the switch from cc to content Created 7 years, 8 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
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 794 matching lines...) Expand 10 before | Expand all | Expand 10 after
805 switches::kDisableSessionStorage, 805 switches::kDisableSessionStorage,
806 switches::kDisableSharedWorkers, 806 switches::kDisableSharedWorkers,
807 switches::kDisableSpeechInput, 807 switches::kDisableSpeechInput,
808 #if defined(OS_ANDROID) 808 #if defined(OS_ANDROID)
809 switches::kEnableWebAudio, 809 switches::kEnableWebAudio,
810 switches::kDisableWebRTC, 810 switches::kDisableWebRTC,
811 #else 811 #else
812 switches::kDisableWebAudio, 812 switches::kDisableWebAudio,
813 #endif 813 #endif
814 switches::kDisableWebSockets, 814 switches::kDisableWebSockets,
815 switches::kEnableExperimentalWebSocket,
815 switches::kDomAutomationController, 816 switches::kDomAutomationController,
816 switches::kEnableAccessibilityLogging, 817 switches::kEnableAccessibilityLogging,
817 switches::kEnableBrowserPluginForAllViewTypes, 818 switches::kEnableBrowserPluginForAllViewTypes,
818 switches::kEnableDCHECK, 819 switches::kEnableDCHECK,
819 switches::kEnableDelegatedRenderer, 820 switches::kEnableDelegatedRenderer,
820 switches::kDisableEncryptedMedia, 821 switches::kDisableEncryptedMedia,
821 switches::kEnableExperimentalWebKitFeatures, 822 switches::kEnableExperimentalWebKitFeatures,
822 switches::kEnableFixedLayout, 823 switches::kEnableFixedLayout,
823 switches::kEnableDeferredImageDecoding, 824 switches::kEnableDeferredImageDecoding,
824 switches::kEnableGPUServiceLogging, 825 switches::kEnableGPUServiceLogging,
(...skipping 887 matching lines...) Expand 10 before | Expand all | Expand 10 after
1712 TRACE_EVENT0("renderer_host", 1713 TRACE_EVENT0("renderer_host",
1713 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost"); 1714 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost");
1714 AcceleratedSurfaceMsg_BufferPresented_Params ack_params; 1715 AcceleratedSurfaceMsg_BufferPresented_Params ack_params;
1715 ack_params.sync_point = 0; 1716 ack_params.sync_point = 0;
1716 RenderWidgetHostImpl::AcknowledgeBufferPresent(route_id, 1717 RenderWidgetHostImpl::AcknowledgeBufferPresent(route_id,
1717 gpu_process_host_id, 1718 gpu_process_host_id,
1718 ack_params); 1719 ack_params);
1719 } 1720 }
1720 1721
1721 } // namespace content 1722 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698