| OLD | NEW |
| 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 <vector> | 7 #include <vector> |
| 8 | 8 |
| 9 #include "base/command_line.h" | 9 #include "base/command_line.h" |
| 10 #include "base/feature_list.h" | 10 #include "base/feature_list.h" |
| (...skipping 26 matching lines...) Expand all Loading... |
| 37 WebRuntimeFeatures::enableFastMobileScrolling(true); | 37 WebRuntimeFeatures::enableFastMobileScrolling(true); |
| 38 WebRuntimeFeatures::enableMediaCapture(true); | 38 WebRuntimeFeatures::enableMediaCapture(true); |
| 39 // Android won't be able to reliably support non-persistent notifications, the | 39 // Android won't be able to reliably support non-persistent notifications, the |
| 40 // intended behavior for which is in flux by itself. | 40 // intended behavior for which is in flux by itself. |
| 41 WebRuntimeFeatures::enableNotificationConstructor(false); | 41 WebRuntimeFeatures::enableNotificationConstructor(false); |
| 42 // Android does not yet support switching of audio output devices | 42 // Android does not yet support switching of audio output devices |
| 43 WebRuntimeFeatures::enableAudioOutputDevices(false); | 43 WebRuntimeFeatures::enableAudioOutputDevices(false); |
| 44 WebRuntimeFeatures::enableAutoplayMutedVideos(true); | 44 WebRuntimeFeatures::enableAutoplayMutedVideos(true); |
| 45 // Android does not yet support SystemMonitor. | 45 // Android does not yet support SystemMonitor. |
| 46 WebRuntimeFeatures::enableOnDeviceChange(false); | 46 WebRuntimeFeatures::enableOnDeviceChange(false); |
| 47 WebRuntimeFeatures::enableMediaSession(true); |
| 47 #else // defined(OS_ANDROID) | 48 #else // defined(OS_ANDROID) |
| 48 WebRuntimeFeatures::enableNavigatorContentUtils(true); | 49 WebRuntimeFeatures::enableNavigatorContentUtils(true); |
| 49 if (base::FeatureList::IsEnabled( | 50 if (base::FeatureList::IsEnabled( |
| 50 features::kCrossOriginMediaPlaybackRequiresUserGesture)) { | 51 features::kCrossOriginMediaPlaybackRequiresUserGesture)) { |
| 51 WebRuntimeFeatures::enableAutoplayMutedVideos(true); | 52 WebRuntimeFeatures::enableAutoplayMutedVideos(true); |
| 52 } | 53 } |
| 53 #endif // defined(OS_ANDROID) | 54 #endif // defined(OS_ANDROID) |
| 54 | 55 |
| 55 #if defined(OS_ANDROID) || defined(USE_AURA) | 56 #if defined(OS_ANDROID) || defined(USE_AURA) |
| 56 WebRuntimeFeatures::enableCompositedSelectionUpdate(true); | 57 WebRuntimeFeatures::enableCompositedSelectionUpdate(true); |
| (...skipping 310 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 367 if (command_line.HasSwitch(switches::kDisableBlinkFeatures)) { | 368 if (command_line.HasSwitch(switches::kDisableBlinkFeatures)) { |
| 368 std::vector<std::string> disabled_features = base::SplitString( | 369 std::vector<std::string> disabled_features = base::SplitString( |
| 369 command_line.GetSwitchValueASCII(switches::kDisableBlinkFeatures), | 370 command_line.GetSwitchValueASCII(switches::kDisableBlinkFeatures), |
| 370 ",", base::TRIM_WHITESPACE, base::SPLIT_WANT_ALL); | 371 ",", base::TRIM_WHITESPACE, base::SPLIT_WANT_ALL); |
| 371 for (const std::string& feature : disabled_features) | 372 for (const std::string& feature : disabled_features) |
| 372 WebRuntimeFeatures::enableFeatureFromString(feature, false); | 373 WebRuntimeFeatures::enableFeatureFromString(feature, false); |
| 373 } | 374 } |
| 374 } | 375 } |
| 375 | 376 |
| 376 } // namespace content | 377 } // namespace content |
| OLD | NEW |