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