blob: a0672b37c42170e46c14bd7463f2e6a1c90459f5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
// Copyright (c) 2010 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "base/scoped_vector.h"
#include "chrome/app/chrome_dll_resource.h" // IDC_HISTORY_MENU
#include "chrome/browser/browser.h"
#import "chrome/browser/cocoa/history_menu_cocoa_controller.h"
#include "chrome/browser/browser_list.h"
#include "chrome/browser/browser_process.h"
#include "chrome/browser/cocoa/event_utils.h"
#include "chrome/browser/history/history.h"
#include "chrome/browser/history/history_types.h"
#include "chrome/browser/tab_contents/tab_contents.h"
#include "webkit/glue/window_open_disposition.h"
@implementation HistoryMenuCocoaController
- (id)initWithBridge:(HistoryMenuBridge*)bridge {
if ((self = [super init])) {
bridge_ = bridge;
DCHECK(bridge_);
}
return self;
}
// Open the URL of the given history item in the current tab.
- (void)openURLForItem:(const HistoryMenuBridge::HistoryItem*)node {
Browser* browser = Browser::GetOrCreateTabbedBrowser(bridge_->profile());
WindowOpenDisposition disposition =
event_utils::WindowOpenDispositionFromNSEvent([NSApp currentEvent]);
browser->OpenURL(node->url, GURL(), disposition,
PageTransition::AUTO_BOOKMARK);
}
- (const HistoryMenuBridge::HistoryItem*)itemForTag:(NSInteger)tag {
const ScopedVector<HistoryMenuBridge::HistoryItem>* results = NULL;
NSInteger tag_base = 0;
if (tag > IDC_HISTORY_MENU_VISITED && tag < IDC_HISTORY_MENU_CLOSED) {
results = bridge_->visited_results();
tag_base = IDC_HISTORY_MENU_VISITED;
} else if (tag > IDC_HISTORY_MENU_CLOSED) {
results = bridge_->closed_results();
tag_base = IDC_HISTORY_MENU_CLOSED;
} else {
NOTREACHED();
}
DCHECK(tag > tag_base);
size_t index = tag - tag_base - 1;
if (index >= results->size())
return NULL;
return (*results)[index];
}
- (IBAction)openHistoryMenuItem:(id)sender {
NSInteger tag = [sender tag];
const HistoryMenuBridge::HistoryItem* item = [self itemForTag:tag];
DCHECK(item->url.is_valid());
[self openURLForItem:item];
}
@end // HistoryMenuCocoaController
|