| Index: chrome/browser/ui/views/location_bar/icon_label_bubble_view.h
|
| diff --git a/chrome/browser/ui/views/location_bar/icon_label_bubble_view.h b/chrome/browser/ui/views/location_bar/icon_label_bubble_view.h
|
| index c60e872bfd3284aaf1d0aca367ba459abab03357..a6290bfe883920ba356911670b70ced72904fbef 100644
|
| --- a/chrome/browser/ui/views/location_bar/icon_label_bubble_view.h
|
| +++ b/chrome/browser/ui/views/location_bar/icon_label_bubble_view.h
|
| @@ -1,4 +1,4 @@
|
| -// Copyright (c) 2010 The Chromium Authors. All rights reserved.
|
| +// Copyright (c) 2011 The Chromium Authors. All rights reserved.
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| @@ -38,14 +38,15 @@ class IconLabelBubbleView : public views::View {
|
| void SetImage(const SkBitmap& bitmap);
|
| void SetItemPadding(int padding) { item_padding_ = padding; }
|
|
|
| - virtual void OnPaint(gfx::Canvas* canvas);
|
| - virtual gfx::Size GetPreferredSize();
|
| - virtual void Layout();
|
| + virtual gfx::Size GetPreferredSize() OVERRIDE;
|
| + virtual void Layout() OVERRIDE;
|
|
|
| protected:
|
| void SetElideInMiddle(bool elide_in_middle);
|
| gfx::Size GetNonLabelSize();
|
|
|
| + virtual void OnPaint(gfx::Canvas* canvas) OVERRIDE;
|
| +
|
| private:
|
| int GetNonLabelWidth();
|
|
|
|
|