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 #include "chrome/browser/ui/views/location_bar/click_handler.h" | 5 #include "chrome/browser/ui/views/location_bar/click_handler.h" |
6 | 6 |
7 #include "chrome/browser/ui/browser.h" | |
8 #include "chrome/browser/ui/tab_contents/tab_contents_wrapper.h" | 7 #include "chrome/browser/ui/tab_contents/tab_contents_wrapper.h" |
9 #include "chrome/browser/ui/views/location_bar/location_bar_view.h" | 8 #include "chrome/browser/ui/views/location_bar/location_bar_view.h" |
10 #include "content/public/browser/navigation_controller.h" | 9 #include "content/public/browser/navigation_controller.h" |
11 #include "content/public/browser/navigation_entry.h" | 10 #include "content/public/browser/navigation_entry.h" |
12 #include "content/public/browser/web_contents.h" | 11 #include "content/public/browser/web_contents.h" |
13 #include "ui/views/view.h" | 12 #include "ui/views/view.h" |
14 | 13 |
15 using content::NavigationController; | 14 using content::NavigationController; |
16 using content::NavigationEntry; | 15 using content::NavigationEntry; |
17 using content::WebContents; | 16 using content::WebContents; |
(...skipping 14 matching lines...) Expand all Loading... |
32 return; | 31 return; |
33 | 32 |
34 WebContents* tab = location_bar_->GetTabContentsWrapper()->web_contents(); | 33 WebContents* tab = location_bar_->GetTabContentsWrapper()->web_contents(); |
35 const NavigationController& controller = tab->GetController(); | 34 const NavigationController& controller = tab->GetController(); |
36 NavigationEntry* nav_entry = controller.GetActiveEntry(); | 35 NavigationEntry* nav_entry = controller.GetActiveEntry(); |
37 if (!nav_entry) { | 36 if (!nav_entry) { |
38 NOTREACHED(); | 37 NOTREACHED(); |
39 return; | 38 return; |
40 } | 39 } |
41 | 40 |
42 Browser* browser = Browser::GetBrowserForController(&controller, NULL); | 41 location_bar_->delegate()->ShowPageInfo( |
43 browser->ShowPageInfo(tab, nav_entry->GetURL(), nav_entry->GetSSL(), true); | 42 tab, nav_entry->GetURL(), nav_entry->GetSSL(), true); |
44 } | 43 } |
OLD | NEW |