summaryrefslogtreecommitdiffstats
path: root/chrome/browser/views/first_run_customize_view.cc
diff options
context:
space:
mode:
authorerg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-09-17 22:25:33 +0000
committererg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-09-17 22:25:33 +0000
commit6f3bb6ca5a2e423fc9dda71c164c7e8ae2a8eae7 (patch)
tree4ce1316dbfd179681bdff905a7d71f1b4cbb902c /chrome/browser/views/first_run_customize_view.cc
parent4c45708be10906e3cdbe9d40d206cfd3fcbaf1c2 (diff)
downloadchromium_src-6f3bb6ca5a2e423fc9dda71c164c7e8ae2a8eae7.zip
chromium_src-6f3bb6ca5a2e423fc9dda71c164c7e8ae2a8eae7.tar.gz
chromium_src-6f3bb6ca5a2e423fc9dda71c164c7e8ae2a8eae7.tar.bz2
Rename legacy methods that were in CamelCase to unix_hacker.
Required going through and modifying some of the code to solve name clashes. Review URL: http://codereview.chromium.org/2945 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@2337 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/views/first_run_customize_view.cc')
-rw-r--r--chrome/browser/views/first_run_customize_view.cc16
1 files changed, 8 insertions, 8 deletions
diff --git a/chrome/browser/views/first_run_customize_view.cc b/chrome/browser/views/first_run_customize_view.cc
index 1109ac9..378a135 100644
--- a/chrome/browser/views/first_run_customize_view.cc
+++ b/chrome/browser/views/first_run_customize_view.cc
@@ -104,8 +104,8 @@ void FirstRunCustomizeView::Layout() {
canvas.cx - pref_size.cx, pref_size.cy);
AdjustDialogWidth(main_label_);
- int next_v_space = background_image()->GetY() +
- background_image()->GetHeight() + kPanelVertMargin;
+ int next_v_space = background_image()->y() +
+ background_image()->height() + kPanelVertMargin;
import_cbox_->GetPreferredSize(&pref_size);
import_cbox_->SetBounds(kPanelHorizMargin, next_v_space,
@@ -113,8 +113,8 @@ void FirstRunCustomizeView::Layout() {
import_cbox_->SetIsSelected(true);
- int x_offset = import_cbox_->GetX() +
- import_cbox_->GetWidth();
+ int x_offset = import_cbox_->x() +
+ import_cbox_->width();
import_from_combo_->GetPreferredSize(&pref_size);
import_from_combo_->SetBounds(x_offset, next_v_space,
@@ -122,7 +122,7 @@ void FirstRunCustomizeView::Layout() {
AdjustDialogWidth(import_from_combo_);
- next_v_space = import_cbox_->GetY() + import_cbox_->GetHeight() +
+ next_v_space = import_cbox_->y() + import_cbox_->height() +
kUnrelatedControlVerticalSpacing;
default_browser_cbox_->GetPreferredSize(&pref_size);
@@ -131,7 +131,7 @@ void FirstRunCustomizeView::Layout() {
AdjustDialogWidth(default_browser_cbox_);
- next_v_space += default_browser_cbox_->GetHeight() +
+ next_v_space += default_browser_cbox_->height() +
kUnrelatedControlVerticalSpacing;
shortcuts_label_->GetPreferredSize(&pref_size);
@@ -140,7 +140,7 @@ void FirstRunCustomizeView::Layout() {
AdjustDialogWidth(shortcuts_label_);
- next_v_space += shortcuts_label_->GetHeight() +
+ next_v_space += shortcuts_label_->height() +
kRelatedControlVerticalSpacing;
desktop_shortcut_cbox_->GetPreferredSize(&pref_size);
@@ -149,7 +149,7 @@ void FirstRunCustomizeView::Layout() {
AdjustDialogWidth(desktop_shortcut_cbox_);
- next_v_space += desktop_shortcut_cbox_->GetHeight() +
+ next_v_space += desktop_shortcut_cbox_->height() +
kRelatedControlVerticalSpacing;
quick_shortcut_cbox_->GetPreferredSize(&pref_size);