| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 CHROME_BROWSER_EXTENSIONS_EXTENSION_BROWSERTEST_H_ | 5 #ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_BROWSERTEST_H_ |
| 6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_BROWSERTEST_H_ | 6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_BROWSERTEST_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/command_line.h" | 10 #include "base/command_line.h" |
| (...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 247 // When waiting for visible page action count to change, we wait until it | 247 // When waiting for visible page action count to change, we wait until it |
| 248 // reaches this value. | 248 // reaches this value. |
| 249 int target_visible_page_action_count_; | 249 int target_visible_page_action_count_; |
| 250 | 250 |
| 251 // Make the current channel "dev" for the duration of the test. | 251 // Make the current channel "dev" for the duration of the test. |
| 252 extensions::Feature::ScopedCurrentChannel current_channel_; | 252 extensions::Feature::ScopedCurrentChannel current_channel_; |
| 253 | 253 |
| 254 // Disable external install UI. | 254 // Disable external install UI. |
| 255 extensions::FeatureSwitch::ScopedOverride | 255 extensions::FeatureSwitch::ScopedOverride |
| 256 override_prompt_for_external_extensions_; | 256 override_prompt_for_external_extensions_; |
| 257 |
| 258 // Disable the sideload wipeout UI. |
| 259 extensions::FeatureSwitch::ScopedOverride |
| 260 override_sideload_wipeout_; |
| 257 }; | 261 }; |
| 258 | 262 |
| 259 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_BROWSERTEST_H_ | 263 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_BROWSERTEST_H_ |
| OLD | NEW |