| OLD | NEW |
| (Empty) | |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef CHROME_BROWSER_UI_PANELS_PANEL_OVERFLOW_INDICATOR_GTK_H_ |
| 6 #define CHROME_BROWSER_UI_PANELS_PANEL_OVERFLOW_INDICATOR_GTK_H_ |
| 7 #pragma once |
| 8 |
| 9 #include "chrome/browser/ui/panels/panel_overflow_indicator.h" |
| 10 |
| 11 #include "base/basictypes.h" |
| 12 #include "base/compiler_specific.h" |
| 13 |
| 14 class PanelOverflowIndicatorGtk : public PanelOverflowIndicator { |
| 15 public: |
| 16 PanelOverflowIndicatorGtk(); |
| 17 virtual ~PanelOverflowIndicatorGtk(); |
| 18 |
| 19 // Overridden from OverflowIndicator: |
| 20 virtual int GetHeight() const OVERRIDE; |
| 21 virtual gfx::Rect GetBounds() const OVERRIDE; |
| 22 virtual void SetBounds(const gfx::Rect& bounds) OVERRIDE; |
| 23 virtual int GetCount() const OVERRIDE; |
| 24 virtual void SetCount(int count) OVERRIDE; |
| 25 virtual void DrawAttention() OVERRIDE; |
| 26 virtual void StopDrawingAttention() OVERRIDE; |
| 27 virtual bool IsDrawingAttention() const OVERRIDE; |
| 28 |
| 29 private: |
| 30 DISALLOW_COPY_AND_ASSIGN(PanelOverflowIndicatorGtk); |
| 31 }; |
| 32 |
| 33 #endif // CHROME_BROWSER_UI_PANELS_PANEL_OVERFLOW_INDICATOR_GTK_H_ |
| OLD | NEW |