OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 #import "ui/views/controls/menu/menu_runner_impl_cocoa.h" | 5 #import "ui/views/controls/menu/menu_runner_impl_cocoa.h" |
6 | 6 |
7 #import <Cocoa/Cocoa.h> | 7 #import <Cocoa/Cocoa.h> |
8 | 8 |
| 9 #include "base/macros.h" |
9 #include "base/strings/utf_string_conversions.h" | 10 #include "base/strings/utf_string_conversions.h" |
10 #import "testing/gtest_mac.h" | 11 #import "testing/gtest_mac.h" |
11 #include "ui/base/models/simple_menu_model.h" | 12 #include "ui/base/models/simple_menu_model.h" |
12 #include "ui/events/event_utils.h" | 13 #include "ui/events/event_utils.h" |
13 #include "ui/views/test/views_test_base.h" | 14 #include "ui/views/test/views_test_base.h" |
14 | 15 |
15 namespace views { | 16 namespace views { |
16 namespace test { | 17 namespace test { |
17 namespace { | 18 namespace { |
18 | 19 |
(...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
216 // In RTL, Cocoa messes up the positioning unless the anchor rectangle is | 217 // In RTL, Cocoa messes up the positioning unless the anchor rectangle is |
217 // offset to the right of the view. The offset for the checkmark is also | 218 // offset to the right of the view. The offset for the checkmark is also |
218 // skipped, to give a better match to native behavior. | 219 // skipped, to give a better match to native behavior. |
219 base::i18n::SetICUDefaultLocale("he"); | 220 base::i18n::SetICUDefaultLocale("he"); |
220 RunMenuAt(anchor_rect); | 221 RunMenuAt(anchor_rect); |
221 EXPECT_EQ(combobox_rect.right(), last_anchor_frame_.origin.x); | 222 EXPECT_EQ(combobox_rect.right(), last_anchor_frame_.origin.x); |
222 } | 223 } |
223 | 224 |
224 } // namespace test | 225 } // namespace test |
225 } // namespace views | 226 } // namespace views |
OLD | NEW |