| OLD | NEW |
| (Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef UI_BASE_TEST_SCOPED_MAC_RTL_H_ |
| 6 #define UI_BASE_TEST_SCOPED_MAC_RTL_H_ |
| 7 |
| 8 #include <string> |
| 9 |
| 10 #include "base/test/scoped_feature_list.h" |
| 11 |
| 12 namespace ui { |
| 13 |
| 14 // Enables all flags required for |
| 15 // |ui::ShouldDoExperimentalRTLLayout| to return true. |
| 16 class ScopedEnableMacRTLLayout final { |
| 17 public: |
| 18 ScopedEnableMacRTLLayout(); |
| 19 ~ScopedEnableMacRTLLayout(); |
| 20 |
| 21 private: |
| 22 BOOL original_apple_text_direction_; |
| 23 BOOL original_rtl_writing_direction_; |
| 24 std::string original_locale_; |
| 25 base::test::ScopedFeatureList scoped_feature_list_; |
| 26 DISALLOW_COPY_AND_ASSIGN(ScopedEnableMacRTLLayout); |
| 27 }; |
| 28 |
| 29 } // namespace ui |
| 30 |
| 31 #endif // UI_BASE_TEST_SCOPED_MAC_RTL_H_ |
| OLD | NEW |