| 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 #import "chrome/browser/ui/cocoa/omnibox/omnibox_view_mac.h" | 5 #import "chrome/browser/ui/cocoa/omnibox/omnibox_view_mac.h" |
| 6 | 6 |
| 7 #include "chrome/browser/search/search.h" | 7 #include "chrome/browser/search/search.h" |
| 8 #include "chrome/browser/ui/cocoa/cocoa_profile_test.h" | 8 #include "chrome/browser/ui/cocoa/cocoa_profile_test.h" |
| 9 #include "chrome/browser/ui/omnibox/omnibox_edit_controller.h" | 9 #include "chrome/browser/ui/omnibox/omnibox_edit_controller.h" |
| 10 #include "chrome/browser/ui/omnibox/omnibox_popup_model.h" | 10 #include "chrome/browser/ui/omnibox/omnibox_popup_model.h" |
| (...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 void SetModel(OmniboxViewMac* view, OmniboxEditModel* model) { | 110 void SetModel(OmniboxViewMac* view, OmniboxEditModel* model) { |
| 111 view->model_.reset(model); | 111 view->model_.reset(model); |
| 112 } | 112 } |
| 113 }; | 113 }; |
| 114 | 114 |
| 115 TEST_F(OmniboxViewMacTest, GetFieldFont) { | 115 TEST_F(OmniboxViewMacTest, GetFieldFont) { |
| 116 EXPECT_TRUE(OmniboxViewMac::GetFieldFont()); | 116 EXPECT_TRUE(OmniboxViewMac::GetFieldFont()); |
| 117 } | 117 } |
| 118 | 118 |
| 119 TEST_F(OmniboxViewMacTest, TabToAutocomplete) { | 119 TEST_F(OmniboxViewMacTest, TabToAutocomplete) { |
| 120 chrome::EnableInstantExtendedAPIForTesting(); | 120 chrome::EnableQueryExtractionForTesting(); |
| 121 OmniboxViewMac view(NULL, profile(), NULL, NULL); | 121 OmniboxViewMac view(NULL, profile(), NULL, NULL); |
| 122 | 122 |
| 123 // This is deleted by the omnibox view. | 123 // This is deleted by the omnibox view. |
| 124 MockOmniboxEditModel* model = | 124 MockOmniboxEditModel* model = |
| 125 new MockOmniboxEditModel(&view, NULL, profile()); | 125 new MockOmniboxEditModel(&view, NULL, profile()); |
| 126 SetModel(&view, model); | 126 SetModel(&view, model); |
| 127 | 127 |
| 128 MockOmniboxPopupView popup_view; | 128 MockOmniboxPopupView popup_view; |
| 129 OmniboxPopupModel popup_model(&popup_view, model); | 129 OmniboxPopupModel popup_model(&popup_view, model); |
| 130 | 130 |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 194 | 194 |
| 195 // With popup open verify that pressing up and down arrow works. | 195 // With popup open verify that pressing up and down arrow works. |
| 196 popup_view.set_is_open(true); | 196 popup_view.set_is_open(true); |
| 197 model->set_up_or_down_count(0); | 197 model->set_up_or_down_count(0); |
| 198 view.OnDoCommandBySelector(@selector(moveDown:)); | 198 view.OnDoCommandBySelector(@selector(moveDown:)); |
| 199 EXPECT_EQ(1, model->up_or_down_count()); | 199 EXPECT_EQ(1, model->up_or_down_count()); |
| 200 model->set_up_or_down_count(0); | 200 model->set_up_or_down_count(0); |
| 201 view.OnDoCommandBySelector(@selector(moveUp:)); | 201 view.OnDoCommandBySelector(@selector(moveUp:)); |
| 202 EXPECT_EQ(-1, model->up_or_down_count()); | 202 EXPECT_EQ(-1, model->up_or_down_count()); |
| 203 } | 203 } |
| OLD | NEW |