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

Side by Side Diff: content/child/runtime_features.cc

Issue 23593006: Add support for datalist to input type color Base URL: https://chromium.googlesource.com/chromium/src.git@colorstretch
Patch Set: Created 7 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
« no previous file with comments | « content/browser/web_contents/web_contents_impl.cc ('k') | content/common/view_messages.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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 #include "content/child/runtime_features.h" 5 #include "content/child/runtime_features.h"
6 6
7 #include "base/command_line.h" 7 #include "base/command_line.h"
8 #include "content/public/common/content_switches.h" 8 #include "content/public/common/content_switches.h"
9 #include "third_party/WebKit/public/web/WebRuntimeFeatures.h" 9 #include "third_party/WebKit/public/web/WebRuntimeFeatures.h"
10 10
(...skipping 19 matching lines...) Expand all
30 bool enable_webaudio = false; 30 bool enable_webaudio = false;
31 #if defined(ARCH_CPU_ARMEL) 31 #if defined(ARCH_CPU_ARMEL)
32 enable_webaudio = 32 enable_webaudio =
33 ((android_getCpuFeatures() & ANDROID_CPU_ARM_FEATURE_NEON) != 0); 33 ((android_getCpuFeatures() & ANDROID_CPU_ARM_FEATURE_NEON) != 0);
34 #endif // defined(ARCH_CPU_ARMEL) 34 #endif // defined(ARCH_CPU_ARMEL)
35 WebRuntimeFeatures::enableWebAudio(enable_webaudio); 35 WebRuntimeFeatures::enableWebAudio(enable_webaudio);
36 // Android does not support the Gamepad API. 36 // Android does not support the Gamepad API.
37 WebRuntimeFeatures::enableGamepad(false); 37 WebRuntimeFeatures::enableGamepad(false);
38 // Android does not have support for PagePopup 38 // Android does not have support for PagePopup
39 WebRuntimeFeatures::enablePagePopup(false); 39 WebRuntimeFeatures::enablePagePopup(false);
40 // datalist on Android is not enabled
41 WebRuntimeFeatures::enableDataListElement(false);
42 #endif // defined(OS_ANDROID) 40 #endif // defined(OS_ANDROID)
43 } 41 }
44 42
45 void SetRuntimeFeaturesDefaultsAndUpdateFromArgs( 43 void SetRuntimeFeaturesDefaultsAndUpdateFromArgs(
46 const CommandLine& command_line) { 44 const CommandLine& command_line) {
47 WebRuntimeFeatures::enableStableFeatures(true); 45 WebRuntimeFeatures::enableStableFeatures(true);
48 46
49 if (command_line.HasSwitch(switches::kEnableExperimentalWebPlatformFeatures)) 47 if (command_line.HasSwitch(switches::kEnableExperimentalWebPlatformFeatures))
50 WebRuntimeFeatures::enableExperimentalFeatures(true); 48 WebRuntimeFeatures::enableExperimentalFeatures(true);
51 49
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
137 WebRuntimeFeatures::enableHTMLImports(true); 135 WebRuntimeFeatures::enableHTMLImports(true);
138 136
139 if (command_line.HasSwitch(switches::kEnableOverlayScrollbars)) 137 if (command_line.HasSwitch(switches::kEnableOverlayScrollbars))
140 WebRuntimeFeatures::enableOverlayScrollbars(true); 138 WebRuntimeFeatures::enableOverlayScrollbars(true);
141 139
142 if (command_line.HasSwitch(switches::kEnableInputModeAttribute)) 140 if (command_line.HasSwitch(switches::kEnableInputModeAttribute))
143 WebRuntimeFeatures::enableInputModeAttribute(true); 141 WebRuntimeFeatures::enableInputModeAttribute(true);
144 } 142 }
145 143
146 } // namespace content 144 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/web_contents/web_contents_impl.cc ('k') | content/common/view_messages.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698