| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 "chrome/common/chrome_features.h" | 5 #include "chrome/common/chrome_features.h" |
| 6 | 6 |
| 7 #include "extensions/features/features.h" | 7 #include "extensions/features/features.h" |
| 8 #include "ppapi/features/features.h" | 8 #include "ppapi/features/features.h" |
| 9 | 9 |
| 10 namespace features { | 10 namespace features { |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 | 67 |
| 68 // Fixes for browser hang bugs are deployed in a field trial in order to measure | 68 // Fixes for browser hang bugs are deployed in a field trial in order to measure |
| 69 // their impact. See crbug.com/478209. | 69 // their impact. See crbug.com/478209. |
| 70 const base::Feature kBrowserHangFixesExperiment{ | 70 const base::Feature kBrowserHangFixesExperiment{ |
| 71 "BrowserHangFixesExperiment", base::FEATURE_DISABLED_BY_DEFAULT}; | 71 "BrowserHangFixesExperiment", base::FEATURE_DISABLED_BY_DEFAULT}; |
| 72 | 72 |
| 73 #if defined(OS_MACOSX) | 73 #if defined(OS_MACOSX) |
| 74 // Enables or disables the browser's touch bar. | 74 // Enables or disables the browser's touch bar. |
| 75 const base::Feature kBrowserTouchBar{"BrowserTouchBar", | 75 const base::Feature kBrowserTouchBar{"BrowserTouchBar", |
| 76 base::FEATURE_ENABLED_BY_DEFAULT}; | 76 base::FEATURE_ENABLED_BY_DEFAULT}; |
| 77 |
| 78 // Enables or disables keyboard focus for the tab strip. |
| 79 const base::Feature kTabStripKeyboardFocus{"TabStripKeyboardFocus", |
| 80 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 77 #endif // defined(OS_MACOSX) | 81 #endif // defined(OS_MACOSX) |
| 78 | 82 |
| 79 #if defined(OS_ANDROID) | 83 #if defined(OS_ANDROID) |
| 80 // Experiment to make Geolocation permissions in the omnibox and the default | 84 // Experiment to make Geolocation permissions in the omnibox and the default |
| 81 // search engine's search page consistent. | 85 // search engine's search page consistent. |
| 82 const base::Feature kConsistentOmniboxGeolocation{ | 86 const base::Feature kConsistentOmniboxGeolocation{ |
| 83 "ConsistentOmniboxGeolocation", base::FEATURE_DISABLED_BY_DEFAULT}; | 87 "ConsistentOmniboxGeolocation", base::FEATURE_DISABLED_BY_DEFAULT}; |
| 84 #endif | 88 #endif |
| 85 | 89 |
| 86 #if defined(OS_WIN) | 90 #if defined(OS_WIN) |
| (...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 290 // Enables or disables emoji, handwriting and voice input on opt-in IME menu. | 294 // Enables or disables emoji, handwriting and voice input on opt-in IME menu. |
| 291 const base::Feature kEHVInputOnImeMenu{"EmojiHandwritingVoiceInput", | 295 const base::Feature kEHVInputOnImeMenu{"EmojiHandwritingVoiceInput", |
| 292 base::FEATURE_ENABLED_BY_DEFAULT}; | 296 base::FEATURE_ENABLED_BY_DEFAULT}; |
| 293 | 297 |
| 294 // Enables or disables flash component updates on Chrome OS. | 298 // Enables or disables flash component updates on Chrome OS. |
| 295 const base::Feature kCrosCompUpdates{"CrosCompUpdates", | 299 const base::Feature kCrosCompUpdates{"CrosCompUpdates", |
| 296 base::FEATURE_ENABLED_BY_DEFAULT}; | 300 base::FEATURE_ENABLED_BY_DEFAULT}; |
| 297 #endif // defined(OS_CHROMEOS) | 301 #endif // defined(OS_CHROMEOS) |
| 298 | 302 |
| 299 } // namespace features | 303 } // namespace features |
| OLD | NEW |