| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 #include "base/debug/debugger.h" | 5 #include "base/debug/debugger.h" |
| 6 #include "base/scoped_nsobject.h" | 6 #include "base/scoped_nsobject.h" |
| 7 #include "chrome/app/chrome_dll_resource.h" | 7 #include "chrome/app/chrome_command_ids.h" |
| 8 #import "chrome/browser/cocoa/chrome_event_processing_window.h" | 8 #import "chrome/browser/cocoa/chrome_event_processing_window.h" |
| 9 #import "chrome/browser/cocoa/browser_window_controller.h" | 9 #import "chrome/browser/cocoa/browser_window_controller.h" |
| 10 #import "chrome/browser/cocoa/browser_frame_view.h" | 10 #import "chrome/browser/cocoa/browser_frame_view.h" |
| 11 #import "chrome/browser/cocoa/cocoa_test_helper.h" | 11 #import "chrome/browser/cocoa/cocoa_test_helper.h" |
| 12 #import "third_party/ocmock/OCMock/OCMock.h" | 12 #import "third_party/ocmock/OCMock/OCMock.h" |
| 13 | 13 |
| 14 namespace { | 14 namespace { |
| 15 | 15 |
| 16 NSEvent* KeyEvent(const NSUInteger flags, const NSUInteger keyCode) { | 16 NSEvent* KeyEvent(const NSUInteger flags, const NSUInteger keyCode) { |
| 17 return [NSEvent keyEventWithType:NSKeyDown | 17 return [NSEvent keyEventWithType:NSKeyDown |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 95 | 95 |
| 96 [window_ setDelegate:delegate]; | 96 [window_ setDelegate:delegate]; |
| 97 [window_ performKeyEquivalent:event]; | 97 [window_ performKeyEquivalent:event]; |
| 98 | 98 |
| 99 // Don't wish to mock all the way down... | 99 // Don't wish to mock all the way down... |
| 100 [window_ setDelegate:nil]; | 100 [window_ setDelegate:nil]; |
| 101 [delegate verify]; | 101 [delegate verify]; |
| 102 } | 102 } |
| 103 | 103 |
| 104 } // namespace | 104 } // namespace |
| OLD | NEW |