OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 <Cocoa/Cocoa.h> | 5 #import <Cocoa/Cocoa.h> |
6 | 6 |
7 #include "app/resource_bundle.h" | |
8 #include "base/scoped_nsobject.h" | 7 #include "base/scoped_nsobject.h" |
9 #include "base/utf_string_conversions.h" | 8 #include "base/utf_string_conversions.h" |
10 #import "chrome/browser/ui/cocoa/cocoa_test_helper.h" | 9 #import "chrome/browser/ui/cocoa/cocoa_test_helper.h" |
11 #import "chrome/browser/ui/cocoa/location_bar/autocomplete_text_field.h" | 10 #import "chrome/browser/ui/cocoa/location_bar/autocomplete_text_field.h" |
12 #import "chrome/browser/ui/cocoa/location_bar/autocomplete_text_field_cell.h" | 11 #import "chrome/browser/ui/cocoa/location_bar/autocomplete_text_field_cell.h" |
13 #import "chrome/browser/ui/cocoa/location_bar/ev_bubble_decoration.h" | 12 #import "chrome/browser/ui/cocoa/location_bar/ev_bubble_decoration.h" |
14 #import "chrome/browser/ui/cocoa/location_bar/keyword_hint_decoration.h" | 13 #import "chrome/browser/ui/cocoa/location_bar/keyword_hint_decoration.h" |
15 #import "chrome/browser/ui/cocoa/location_bar/location_bar_decoration.h" | 14 #import "chrome/browser/ui/cocoa/location_bar/location_bar_decoration.h" |
16 #import "chrome/browser/ui/cocoa/location_bar/location_icon_decoration.h" | 15 #import "chrome/browser/ui/cocoa/location_bar/location_icon_decoration.h" |
17 #import "chrome/browser/ui/cocoa/location_bar/selected_keyword_decoration.h" | 16 #import "chrome/browser/ui/cocoa/location_bar/selected_keyword_decoration.h" |
18 #import "chrome/browser/ui/cocoa/location_bar/star_decoration.h" | 17 #import "chrome/browser/ui/cocoa/location_bar/star_decoration.h" |
19 #include "grit/theme_resources.h" | 18 #include "grit/theme_resources.h" |
20 #include "testing/gmock/include/gmock/gmock.h" | 19 #include "testing/gmock/include/gmock/gmock.h" |
21 #include "testing/gtest/include/gtest/gtest.h" | 20 #include "testing/gtest/include/gtest/gtest.h" |
22 #include "testing/platform_test.h" | 21 #include "testing/platform_test.h" |
23 #import "third_party/ocmock/OCMock/OCMock.h" | 22 #import "third_party/ocmock/OCMock/OCMock.h" |
| 23 #include "ui/base/resource/resource_bundle.h" |
24 | 24 |
25 using ::testing::Return; | 25 using ::testing::Return; |
26 using ::testing::StrictMock; | 26 using ::testing::StrictMock; |
27 using ::testing::_; | 27 using ::testing::_; |
28 | 28 |
29 namespace { | 29 namespace { |
30 | 30 |
31 // Width of the field so that we don't have to ask |field_| for it all | 31 // Width of the field so that we don't have to ask |field_| for it all |
32 // the time. | 32 // the time. |
33 const CGFloat kWidth(300.0); | 33 const CGFloat kWidth(300.0); |
(...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
292 // |controlView| gets the tooltip for the left decoration. | 292 // |controlView| gets the tooltip for the left decoration. |
293 id controlView = [OCMockObject mockForClass:[AutocompleteTextField class]]; | 293 id controlView = [OCMockObject mockForClass:[AutocompleteTextField class]]; |
294 [[controlView expect] addToolTip:tooltip forRect:leftDecorationRect]; | 294 [[controlView expect] addToolTip:tooltip forRect:leftDecorationRect]; |
295 | 295 |
296 [cell updateToolTipsInRect:bounds ofView:controlView]; | 296 [cell updateToolTipsInRect:bounds ofView:controlView]; |
297 | 297 |
298 [controlView verify]; | 298 [controlView verify]; |
299 } | 299 } |
300 | 300 |
301 } // namespace | 301 } // namespace |
OLD | NEW |