| OLD | NEW |
| 1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 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/browser_window_controller.h" | 5 #import "chrome/browser/ui/cocoa/browser_window_controller.h" |
| 6 | 6 |
| 7 #include "base/mac/mac_util.h" | 7 #include "base/mac/mac_util.h" |
| 8 #import "base/mac/scoped_nsobject.h" | 8 #import "base/mac/scoped_nsobject.h" |
| 9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
| 10 #include "base/prefs/pref_service.h" | |
| 11 #include "chrome/app/chrome_command_ids.h" | 10 #include "chrome/app/chrome_command_ids.h" |
| 12 #include "chrome/browser/chrome_notification_types.h" | 11 #include "chrome/browser/chrome_notification_types.h" |
| 13 #include "chrome/browser/ui/browser_list.h" | 12 #include "chrome/browser/ui/browser_list.h" |
| 14 #include "chrome/browser/ui/browser_window.h" | 13 #include "chrome/browser/ui/browser_window.h" |
| 15 #include "chrome/browser/ui/cocoa/cocoa_profile_test.h" | 14 #include "chrome/browser/ui/cocoa/cocoa_profile_test.h" |
| 16 #import "chrome/browser/ui/cocoa/fast_resize_view.h" | 15 #import "chrome/browser/ui/cocoa/fast_resize_view.h" |
| 17 #include "chrome/browser/ui/cocoa/find_bar/find_bar_bridge.h" | 16 #include "chrome/browser/ui/cocoa/find_bar/find_bar_bridge.h" |
| 18 #include "chrome/browser/ui/cocoa/run_loop_testing.h" | 17 #include "chrome/browser/ui/cocoa/run_loop_testing.h" |
| 19 #include "chrome/browser/ui/cocoa/tabs/tab_strip_view.h" | 18 #include "chrome/browser/ui/cocoa/tabs/tab_strip_view.h" |
| 20 #import "chrome/browser/ui/cocoa/toolbar/toolbar_controller.h" | 19 #import "chrome/browser/ui/cocoa/toolbar/toolbar_controller.h" |
| 21 #include "chrome/browser/ui/host_desktop.h" | 20 #include "chrome/browser/ui/host_desktop.h" |
| 22 #include "chrome/common/pref_names.h" | 21 #include "chrome/common/pref_names.h" |
| 23 #include "chrome/test/base/testing_profile.h" | 22 #include "chrome/test/base/testing_profile.h" |
| 24 #include "components/bookmarks/common/bookmark_pref_names.h" | 23 #include "components/bookmarks/common/bookmark_pref_names.h" |
| 24 #include "components/prefs/pref_service.h" |
| 25 #include "content/public/browser/notification_service.h" | 25 #include "content/public/browser/notification_service.h" |
| 26 #include "content/public/test/test_utils.h" | 26 #include "content/public/test/test_utils.h" |
| 27 #include "testing/gmock/include/gmock/gmock.h" | 27 #include "testing/gmock/include/gmock/gmock.h" |
| 28 #import "testing/gtest_mac.h" | 28 #import "testing/gtest_mac.h" |
| 29 #import "third_party/ocmock/OCMock/OCMock.h" | 29 #import "third_party/ocmock/OCMock/OCMock.h" |
| 30 | 30 |
| 31 using ::testing::Return; | 31 using ::testing::Return; |
| 32 | 32 |
| 33 @interface BrowserWindowController (JustForTesting) | 33 @interface BrowserWindowController (JustForTesting) |
| 34 // Already defined in BWC. | 34 // Already defined in BWC. |
| (...skipping 787 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 822 [[NSWindow alloc] initWithContentRect:NSMakeRect(0,0,400,400) | 822 [[NSWindow alloc] initWithContentRect:NSMakeRect(0,0,400,400) |
| 823 styleMask:NSBorderlessWindowMask | 823 styleMask:NSBorderlessWindowMask |
| 824 backing:NSBackingStoreBuffered | 824 backing:NSBackingStoreBuffered |
| 825 defer:NO]); | 825 defer:NO]); |
| 826 [[testFullscreenWindow_ contentView] setWantsLayer:YES]; | 826 [[testFullscreenWindow_ contentView] setWantsLayer:YES]; |
| 827 return testFullscreenWindow_.get(); | 827 return testFullscreenWindow_.get(); |
| 828 } | 828 } |
| 829 @end | 829 @end |
| 830 | 830 |
| 831 /* TODO(???): test other methods of BrowserWindowController */ | 831 /* TODO(???): test other methods of BrowserWindowController */ |
| OLD | NEW |