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/history_menu_cocoa_controller.h" | 5 #import "chrome/browser/ui/cocoa/history_menu_cocoa_controller.h" |
6 | 6 |
7 #include "chrome/app/chrome_command_ids.h" // IDC_HISTORY_MENU | 7 #include "chrome/app/chrome_command_ids.h" // IDC_HISTORY_MENU |
8 #import "chrome/browser/app_controller_mac.h" | 8 #import "chrome/browser/app_controller_mac.h" |
9 #include "chrome/browser/profiles/profile.h" | 9 #include "chrome/browser/profiles/profile.h" |
10 #include "chrome/browser/sessions/tab_restore_service.h" | 10 #include "chrome/browser/sessions/tab_restore_service.h" |
11 #include "chrome/browser/sessions/tab_restore_service_factory.h" | 11 #include "chrome/browser/sessions/tab_restore_service_factory.h" |
12 #include "chrome/browser/ui/browser.h" | 12 #include "chrome/browser/ui/browser.h" |
13 #include "chrome/browser/ui/browser_finder.h" | 13 #include "chrome/browser/ui/browser_finder.h" |
14 #include "chrome/browser/ui/browser_navigator.h" | 14 #include "chrome/browser/ui/browser_navigator.h" |
15 #include "chrome/browser/ui/browser_tab_restore_service_delegate.h" | 15 #include "chrome/browser/ui/browser_tab_restore_service_delegate.h" |
16 #include "chrome/browser/ui/host_desktop.h" | |
17 #include "components/history/core/browser/history_service.h" | 16 #include "components/history/core/browser/history_service.h" |
18 #include "components/history/core/browser/history_types.h" | 17 #include "components/history/core/browser/history_types.h" |
19 #import "ui/base/cocoa/cocoa_base_utils.h" | 18 #import "ui/base/cocoa/cocoa_base_utils.h" |
20 #include "ui/base/window_open_disposition.h" | 19 #include "ui/base/window_open_disposition.h" |
| 20 #include "ui/gfx/host_desktop_type.h" |
21 | 21 |
22 using content::OpenURLParams; | 22 using content::OpenURLParams; |
23 using content::Referrer; | 23 using content::Referrer; |
24 | 24 |
25 @implementation HistoryMenuCocoaController | 25 @implementation HistoryMenuCocoaController |
26 | 26 |
27 - (id)initWithBridge:(HistoryMenuBridge*)bridge { | 27 - (id)initWithBridge:(HistoryMenuBridge*)bridge { |
28 if ((self = [super init])) { | 28 if ((self = [super init])) { |
29 bridge_ = bridge; | 29 bridge_ = bridge; |
30 DCHECK(bridge_); | 30 DCHECK(bridge_); |
(...skipping 30 matching lines...) Expand all Loading... |
61 } | 61 } |
62 } | 62 } |
63 | 63 |
64 - (IBAction)openHistoryMenuItem:(id)sender { | 64 - (IBAction)openHistoryMenuItem:(id)sender { |
65 const HistoryMenuBridge::HistoryItem* item = | 65 const HistoryMenuBridge::HistoryItem* item = |
66 bridge_->HistoryItemForMenuItem(sender); | 66 bridge_->HistoryItemForMenuItem(sender); |
67 [self openURLForItem:item]; | 67 [self openURLForItem:item]; |
68 } | 68 } |
69 | 69 |
70 @end // HistoryMenuCocoaController | 70 @end // HistoryMenuCocoaController |
OLD | NEW |