| 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 #ifndef EXTENSIONS_COMMON_FEATURE_SWITCH_H_ | 5 #ifndef EXTENSIONS_COMMON_FEATURE_SWITCH_H_ |
| 6 #define EXTENSIONS_COMMON_FEATURE_SWITCH_H_ | 6 #define EXTENSIONS_COMMON_FEATURE_SWITCH_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 public: | 33 public: |
| 34 static FeatureSwitch* easy_off_store_install(); | 34 static FeatureSwitch* easy_off_store_install(); |
| 35 static FeatureSwitch* force_dev_mode_highlighting(); | 35 static FeatureSwitch* force_dev_mode_highlighting(); |
| 36 static FeatureSwitch* prompt_for_external_extensions(); | 36 static FeatureSwitch* prompt_for_external_extensions(); |
| 37 static FeatureSwitch* error_console(); | 37 static FeatureSwitch* error_console(); |
| 38 static FeatureSwitch* enable_override_bookmarks_ui(); | 38 static FeatureSwitch* enable_override_bookmarks_ui(); |
| 39 static FeatureSwitch* extension_action_redesign(); | 39 static FeatureSwitch* extension_action_redesign(); |
| 40 static FeatureSwitch* scripts_require_action(); | 40 static FeatureSwitch* scripts_require_action(); |
| 41 static FeatureSwitch* embedded_extension_options(); | 41 static FeatureSwitch* embedded_extension_options(); |
| 42 static FeatureSwitch* trace_app_source(); | 42 static FeatureSwitch* trace_app_source(); |
| 43 static FeatureSwitch* media_router(); | 43 static FeatureSwitch* load_media_router_component_extension(); |
| 44 static FeatureSwitch* media_router_with_cast_extension(); | |
| 45 | 44 |
| 46 enum DefaultValue { | 45 enum DefaultValue { |
| 47 DEFAULT_ENABLED, | 46 DEFAULT_ENABLED, |
| 48 DEFAULT_DISABLED | 47 DEFAULT_DISABLED |
| 49 }; | 48 }; |
| 50 | 49 |
| 51 enum OverrideValue { | 50 enum OverrideValue { |
| 52 OVERRIDE_NONE, | 51 OVERRIDE_NONE, |
| 53 OVERRIDE_ENABLED, | 52 OVERRIDE_ENABLED, |
| 54 OVERRIDE_DISABLED | 53 OVERRIDE_DISABLED |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 95 const char* field_trial_name_; | 94 const char* field_trial_name_; |
| 96 bool default_value_; | 95 bool default_value_; |
| 97 OverrideValue override_value_; | 96 OverrideValue override_value_; |
| 98 | 97 |
| 99 DISALLOW_COPY_AND_ASSIGN(FeatureSwitch); | 98 DISALLOW_COPY_AND_ASSIGN(FeatureSwitch); |
| 100 }; | 99 }; |
| 101 | 100 |
| 102 } // namespace extensions | 101 } // namespace extensions |
| 103 | 102 |
| 104 #endif // EXTENSIONS_COMMON_FEATURE_SWITCH_H_ | 103 #endif // EXTENSIONS_COMMON_FEATURE_SWITCH_H_ |
| OLD | NEW |