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