| 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 #include "chrome/browser/ui/panels/panel_overflow_indicator_gtk.h" | |
| 6 | |
| 7 PanelOverflowIndicator* PanelOverflowIndicator::Create() { | |
| 8 return new PanelOverflowIndicatorGtk(); | |
| 9 } | |
| 10 | |
| 11 PanelOverflowIndicatorGtk::PanelOverflowIndicatorGtk() { | |
| 12 } | |
| 13 | |
| 14 PanelOverflowIndicatorGtk::~PanelOverflowIndicatorGtk() { | |
| 15 } | |
| 16 | |
| 17 int PanelOverflowIndicatorGtk::GetHeight() const { | |
| 18 return 0; | |
| 19 } | |
| 20 | |
| 21 gfx::Rect PanelOverflowIndicatorGtk::GetBounds() const { | |
| 22 return gfx::Rect(); | |
| 23 } | |
| 24 | |
| 25 void PanelOverflowIndicatorGtk::SetBounds(const gfx::Rect& bounds) { | |
| 26 } | |
| 27 | |
| 28 int PanelOverflowIndicatorGtk::GetCount() const { | |
| 29 return 0; | |
| 30 } | |
| 31 | |
| 32 void PanelOverflowIndicatorGtk::SetCount(int count) { | |
| 33 } | |
| 34 | |
| 35 void PanelOverflowIndicatorGtk::DrawAttention() { | |
| 36 } | |
| 37 | |
| 38 void PanelOverflowIndicatorGtk::StopDrawingAttention() { | |
| 39 } | |
| 40 | |
| 41 bool PanelOverflowIndicatorGtk::IsDrawingAttention() const { | |
| 42 return false; | |
| 43 } | |
| OLD | NEW |