From 6f3bb6ca5a2e423fc9dda71c164c7e8ae2a8eae7 Mon Sep 17 00:00:00 2001 From: "erg@google.com" Date: Wed, 17 Sep 2008 22:25:33 +0000 Subject: 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 --- chrome/browser/views/tabs/tab.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'chrome/browser/views/tabs/tab.cc') diff --git a/chrome/browser/views/tabs/tab.cc b/chrome/browser/views/tabs/tab.cc index ec2ec29..82bb795 100644 --- a/chrome/browser/views/tabs/tab.cc +++ b/chrome/browser/views/tabs/tab.cc @@ -218,8 +218,8 @@ void Tab::ButtonPressed(ChromeViews::BaseButton* sender) { void Tab::MakePathForTab(gfx::Path* path) const { DCHECK(path); - SkScalar h = SkIntToScalar(GetHeight()); - SkScalar w = SkIntToScalar(GetWidth()); + SkScalar h = SkIntToScalar(height()); + SkScalar w = SkIntToScalar(width()); path->moveTo(0, h); -- cgit v1.1