diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-01-21 12:52:29 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-01-21 12:52:29 +0000 |
commit | 8d0f80014579e4763286b9d4779a9c79d16cd132 (patch) | |
tree | 9960516820b0c0c6da24644f0c68245d4ee8a2cb /chrome/browser/first_run | |
parent | 3846fb2460ddb4914193428e5f8f5c6c9826740c (diff) | |
download | chromium_src-8d0f80014579e4763286b9d4779a9c79d16cd132.zip chromium_src-8d0f80014579e4763286b9d4779a9c79d16cd132.tar.gz chromium_src-8d0f80014579e4763286b9d4779a9c79d16cd132.tar.bz2 |
views: Make CreatePanelGridLayout a static method of GridLayout class.
Move it from standard_layout.h and rename to just CreatePanel.
BUG=None
TEST=trybots
Review URL: http://codereview.chromium.org/6384002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@72128 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/first_run')
-rw-r--r-- | chrome/browser/first_run/first_run_win.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/first_run/first_run_win.cc b/chrome/browser/first_run/first_run_win.cc index b50317b..dfad247 100644 --- a/chrome/browser/first_run/first_run_win.cc +++ b/chrome/browser/first_run/first_run_win.cc @@ -643,7 +643,7 @@ class TryChromeDialog : public views::ButtonListener, root_view->set_background( views::Background::CreateSolidBackground(0xfc, 0xfc, 0xfc)); - views::GridLayout* layout = CreatePanelGridLayout(root_view); + views::GridLayout* layout = views::GridLayout::CreatePanel(root_view); if (!layout) { NOTREACHED(); return Upgrade::TD_DIALOG_ERROR; |