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

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

Issue 170293002: Remove --enable-input-mode-attribute flag (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 10 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 | « no previous file | content/child/runtime_features.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 #include <algorithm> 10 #include <algorithm>
(...skipping 1015 matching lines...) Expand 10 before | Expand all | Expand 10 after
1026 switches::kEnableExperimentalCanvasFeatures, 1026 switches::kEnableExperimentalCanvasFeatures,
1027 switches::kEnableExperimentalWebPlatformFeatures, 1027 switches::kEnableExperimentalWebPlatformFeatures,
1028 switches::kEnableExperimentalWebSocket, 1028 switches::kEnableExperimentalWebSocket,
1029 switches::kEnableFastTextAutosizing, 1029 switches::kEnableFastTextAutosizing,
1030 switches::kEnableGPUClientLogging, 1030 switches::kEnableGPUClientLogging,
1031 switches::kEnableGpuClientTracing, 1031 switches::kEnableGpuClientTracing,
1032 switches::kEnableGPUServiceLogging, 1032 switches::kEnableGPUServiceLogging,
1033 switches::kEnableHighDpiCompositingForFixedPosition, 1033 switches::kEnableHighDpiCompositingForFixedPosition,
1034 switches::kEnableHTMLImports, 1034 switches::kEnableHTMLImports,
1035 switches::kEnableInbandTextTracks, 1035 switches::kEnableInbandTextTracks,
1036 switches::kEnableInputModeAttribute,
1037 switches::kEnableLayerSquashing, 1036 switches::kEnableLayerSquashing,
1038 switches::kEnableLogging, 1037 switches::kEnableLogging,
1039 switches::kEnableMP3StreamParser, 1038 switches::kEnableMP3StreamParser,
1040 switches::kEnableMemoryBenchmarking, 1039 switches::kEnableMemoryBenchmarking,
1041 switches::kEnableOverlayFullscreenVideo, 1040 switches::kEnableOverlayFullscreenVideo,
1042 switches::kEnableOverlayScrollbar, 1041 switches::kEnableOverlayScrollbar,
1043 switches::kEnableOverscrollNotifications, 1042 switches::kEnableOverscrollNotifications,
1044 switches::kEnablePinch, 1043 switches::kEnablePinch,
1045 switches::kEnablePreparsedJsCaching, 1044 switches::kEnablePreparsedJsCaching,
1046 switches::kEnablePruneGpuCommandBuffers, 1045 switches::kEnablePruneGpuCommandBuffers,
(...skipping 1028 matching lines...) Expand 10 before | Expand all | Expand 10 after
2075 return; 2074 return;
2076 Send(new MediaStreamMsg_EnableAecDump(file_for_transit)); 2075 Send(new MediaStreamMsg_EnableAecDump(file_for_transit));
2077 } 2076 }
2078 2077
2079 void RenderProcessHostImpl::SendDisableAecDumpToRenderer() { 2078 void RenderProcessHostImpl::SendDisableAecDumpToRenderer() {
2080 Send(new MediaStreamMsg_DisableAecDump()); 2079 Send(new MediaStreamMsg_DisableAecDump());
2081 } 2080 }
2082 #endif 2081 #endif
2083 2082
2084 } // namespace content 2083 } // namespace content
OLDNEW
« no previous file with comments | « no previous file | content/child/runtime_features.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698