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

Unified Diff: chrome/browser/ui/views/login_view.cc

Issue 2779973003: views: fold layout_utils::CreatePanelLayout into GridLayout::CreatePanel (Closed)
Patch Set: remove old DEPS entry 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/login_view.cc
diff --git a/chrome/browser/ui/views/login_view.cc b/chrome/browser/ui/views/login_view.cc
index 2b50ecb6c7cb129655b11b898fceb3ecb60a56e4..a638b70525b82ea71c1e87de690f331026fe477b 100644
--- a/chrome/browser/ui/views/login_view.cc
+++ b/chrome/browser/ui/views/login_view.cc
@@ -5,7 +5,6 @@
#include "chrome/browser/ui/views/login_view.h"
#include "chrome/browser/ui/views/harmony/layout_delegate.h"
-#include "chrome/browser/ui/views/layout_utils.h"
#include "components/strings/grit/components_strings.h"
#include "ui/base/l10n/l10n_util.h"
#include "ui/views/controls/label.h"
@@ -41,7 +40,7 @@ LoginView::LoginView(const base::string16& authority,
authority_label_->SetAllowCharacterBreak(true);
// Initialize the Grid Layout Manager used for this dialog box.
- GridLayout* layout = layout_utils::CreatePanelLayout(this);
+ GridLayout* layout = GridLayout::CreatePanel(this);
// Add the column set for the information message at the top of the dialog
// box.
« no previous file with comments | « chrome/browser/ui/views/layout_utils.cc ('k') | chrome/browser/ui/views/sync/one_click_signin_dialog_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698