blob: 92b2bb7f542292f0287947ba3f404d6b2bf69138 (
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
|
// 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 "chrome/browser/views/location_bar/click_handler.h"
#include "chrome/browser/tab_contents/navigation_controller.h"
#include "chrome/browser/tab_contents/tab_contents.h"
#include "chrome/browser/tab_contents_wrapper.h"
#include "chrome/browser/views/location_bar/location_bar_view.h"
#include "views/view.h"
ClickHandler::ClickHandler(const views::View* owner,
const LocationBarView* location_bar)
: owner_(owner),
location_bar_(location_bar) {
}
void ClickHandler::OnMouseReleased(const views::MouseEvent& event,
bool canceled) {
if (canceled || !owner_->HitTest(event.location()))
return;
// Do not show page info if the user has been editing the location
// bar, or the location bar is at the NTP.
if (location_bar_->location_entry()->IsEditingOrEmpty())
return;
TabContents* tab = location_bar_->GetTabContentsWrapper()->tab_contents();
NavigationEntry* nav_entry = tab->controller().GetActiveEntry();
if (!nav_entry) {
NOTREACHED();
return;
}
tab->ShowPageInfo(nav_entry->url(), nav_entry->ssl(), true);
}
|