Chromium Code Reviews| Index: content/child/runtime_features.cc |
| diff --git a/content/child/runtime_features.cc b/content/child/runtime_features.cc |
| index d77679acf6fcfad94435492e46fd9f503946e104..35ce554b82d8fe8b0e6d270b7de808d923b8d5b8 100644 |
| --- a/content/child/runtime_features.cc |
| +++ b/content/child/runtime_features.cc |
| @@ -42,6 +42,8 @@ static void SetRuntimeFeatureDefaultsForPlatform() { |
| WebRuntimeFeatures::enableSharedWorker(false); |
| // Android does not yet support NavigatorContentUtils. |
| WebRuntimeFeatures::enableNavigatorContentUtils(false); |
| + // Android OrientationEvent only for android. |
|
darin (slow to review)
2014/01/10 05:44:19
I think the "only for android" bit is redundant. Y
|
| + WebRuntimeFeatures::enableOrientationEvent(true); |
| #else |
| WebRuntimeFeatures::enableNavigatorContentUtils(true); |
| #endif // defined(OS_ANDROID) |