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

Unified Diff: chrome/browser/ui/views/page_info/website_settings_popup_view.cc

Issue 2741303002: Run `git cl format` on all desktop page_info code. (Closed)
Patch Set: Rebase. 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/page_info/website_settings_popup_view.cc
diff --git a/chrome/browser/ui/views/page_info/website_settings_popup_view.cc b/chrome/browser/ui/views/page_info/website_settings_popup_view.cc
index dbfc2513b8df7830327f3125f99ab7c1adc8c539..a218e27a602391b43f49dd18b0909af9b2cc39b8 100644
--- a/chrome/browser/ui/views/page_info/website_settings_popup_view.cc
+++ b/chrome/browser/ui/views/page_info/website_settings_popup_view.cc
@@ -323,8 +323,7 @@ InternalPageInfoPopupView::InternalPageInfoPopupView(
views::BubbleDialogDelegateView::CreateBubble(this);
}
-InternalPageInfoPopupView::~InternalPageInfoPopupView() {
-}
+InternalPageInfoPopupView::~InternalPageInfoPopupView() {}
void InternalPageInfoPopupView::OnWidgetDestroying(views::Widget* widget) {
g_shown_popup_type = WebsiteSettingsPopupView::POPUP_NONE;
@@ -338,8 +337,7 @@ int InternalPageInfoPopupView::GetDialogButtons() const {
// WebsiteSettingsPopupView
////////////////////////////////////////////////////////////////////////////////
-WebsiteSettingsPopupView::~WebsiteSettingsPopupView() {
-}
+WebsiteSettingsPopupView::~WebsiteSettingsPopupView() {}
// static
void WebsiteSettingsPopupView::ShowPopup(
@@ -417,12 +415,8 @@ WebsiteSettingsPopupView::WebsiteSettingsPopupView(
// propagate up to the dialog width.
const int content_column = 0;
views::ColumnSet* column_set = layout->AddColumnSet(content_column);
- column_set->AddColumn(views::GridLayout::FILL,
- views::GridLayout::FILL,
- 1,
- views::GridLayout::USE_PREF,
- 0,
- 0);
+ column_set->AddColumn(views::GridLayout::FILL, views::GridLayout::FILL, 1,
+ views::GridLayout::USE_PREF, 0, 0);
header_ = new PopupHeaderView(this, this, side_margin);
layout->StartRow(1, content_column);
@@ -625,12 +619,8 @@ void WebsiteSettingsPopupView::SetPermissionInfo(
const int content_column = 0;
views::ColumnSet* column_set = layout->AddColumnSet(content_column);
- column_set->AddColumn(views::GridLayout::FILL,
- views::GridLayout::FILL,
- 1,
- views::GridLayout::USE_PREF,
- 0,
- 0);
+ column_set->AddColumn(views::GridLayout::FILL, views::GridLayout::FILL, 1,
+ views::GridLayout::USE_PREF, 0, 0);
const int permissions_column = 1;
views::ColumnSet* permissions_set = layout->AddColumnSet(permissions_column);
permissions_set->AddColumn(views::GridLayout::FILL, views::GridLayout::FILL,

Powered by Google App Engine
This is Rietveld 408576698