Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(8015)

Unified Diff: chrome/browser/ui/views/location_bar/location_icon_view.cc

Issue 2754383004: Rename WebsiteSettings code to PageInfo. (Closed)
Patch Set: Rename everything. Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/views/location_bar/location_icon_view.cc
diff --git a/chrome/browser/ui/views/location_bar/location_icon_view.cc b/chrome/browser/ui/views/location_bar/location_icon_view.cc
index 1a612d5058ed617e66630b3162961e9d073d1066..716ed353a0b7872478b9943533bc49873c8a03de 100644
--- a/chrome/browser/ui/views/location_bar/location_icon_view.cc
+++ b/chrome/browser/ui/views/location_bar/location_icon_view.cc
@@ -6,7 +6,7 @@
#include "chrome/browser/ui/view_ids.h"
#include "chrome/browser/ui/views/location_bar/location_bar_view.h"
-#include "chrome/browser/ui/views/page_info/website_settings_popup_view.h"
+#include "chrome/browser/ui/views/page_info/page_info_popup_view.h"
#include "chrome/grit/generated_resources.h"
#include "chrome/grit/theme_resources.h"
#include "components/grit/components_scaled_resources.h"
@@ -54,8 +54,7 @@ bool LocationIconView::OnMousePressed(const ui::MouseEvent& event) {
}
suppress_mouse_released_action_ =
- WebsiteSettingsPopupView::GetShownPopupType() !=
- WebsiteSettingsPopupView::POPUP_NONE;
+ PageInfoPopupView::GetShownPopupType() != PageInfoPopupView::POPUP_NONE;
return true;
}
@@ -101,7 +100,7 @@ bool LocationIconView::OnActivate(const ui::Event& event) {
WebContents* contents = location_bar_->GetWebContents();
if (!contents)
return false;
- location_bar_->delegate()->ShowWebsiteSettings(contents);
+ location_bar_->delegate()->ShowPageInfo(contents);
return true;
}

Powered by Google App Engine
This is Rietveld 408576698