Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(68)

Side by Side Diff: chrome/browser/ui/panels/panel_overflow_indicator_gtk.cc

Issue 8953040: Add overflow indicator count on Windows. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix trybot Created 9 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/panels/panel_overflow_indicator_gtk.h ('k') | chrome/browser/ui/panels/panel_overflow_indicator_view.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698