| 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" |
| 11 #include "chrome/browser/ui/omnibox/omnibox_popup_view.h" | 11 #include "chrome/browser/ui/omnibox/omnibox_popup_view.h" |
| 12 #include "chrome/browser/ui/toolbar/toolbar_model_delegate.h" | 12 #include "chrome/browser/ui/toolbar/toolbar_model_delegate.h" |
| 13 #include "chrome/browser/ui/toolbar/toolbar_model_impl.h" | 13 #include "chrome/browser/ui/toolbar/toolbar_model_impl.h" |
| 14 #include "testing/platform_test.h" | 14 #include "testing/platform_test.h" |
| 15 #include "ui/gfx/image/image.h" |
| 15 | 16 |
| 16 namespace { | 17 namespace { |
| 17 | 18 |
| 18 class MockOmniboxEditModel : public OmniboxEditModel { | 19 class MockOmniboxEditModel : public OmniboxEditModel { |
| 19 public: | 20 public: |
| 20 MockOmniboxEditModel(OmniboxView* view, | 21 MockOmniboxEditModel(OmniboxView* view, |
| 21 OmniboxEditController* controller, | 22 OmniboxEditController* controller, |
| 22 Profile* profile) | 23 Profile* profile) |
| 23 : OmniboxEditModel(view, controller, profile), | 24 : OmniboxEditModel(view, controller, profile), |
| 24 up_or_down_count_(0) { | 25 up_or_down_count_(0) { |
| (...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 192 | 193 |
| 193 // With popup open verify that pressing up and down arrow works. | 194 // With popup open verify that pressing up and down arrow works. |
| 194 popup_view.set_is_open(true); | 195 popup_view.set_is_open(true); |
| 195 model->set_up_or_down_count(0); | 196 model->set_up_or_down_count(0); |
| 196 view.OnDoCommandBySelector(@selector(moveDown:)); | 197 view.OnDoCommandBySelector(@selector(moveDown:)); |
| 197 EXPECT_EQ(1, model->up_or_down_count()); | 198 EXPECT_EQ(1, model->up_or_down_count()); |
| 198 model->set_up_or_down_count(0); | 199 model->set_up_or_down_count(0); |
| 199 view.OnDoCommandBySelector(@selector(moveUp:)); | 200 view.OnDoCommandBySelector(@selector(moveUp:)); |
| 200 EXPECT_EQ(-1, model->up_or_down_count()); | 201 EXPECT_EQ(-1, model->up_or_down_count()); |
| 201 } | 202 } |
| OLD | NEW |