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

Unified Diff: chrome/browser/ui/panels/panel_overflow_indicator_cocoa.mm

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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/panels/panel_overflow_indicator_cocoa.mm
diff --git a/chrome/browser/ui/panels/panel_overflow_indicator_cocoa.mm b/chrome/browser/ui/panels/panel_overflow_indicator_cocoa.mm
new file mode 100644
index 0000000000000000000000000000000000000000..e7e84ae456db7c51f10506f7133f8d59717043ca
--- /dev/null
+++ b/chrome/browser/ui/panels/panel_overflow_indicator_cocoa.mm
@@ -0,0 +1,43 @@
+// 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.
+
+#include "chrome/browser/ui/panels/panel_overflow_indicator_cocoa.h"
+
+PanelOverflowIndicator* PanelOverflowIndicator::Create() {
+ return new PanelOverflowIndicatorCocoa();
+}
+
+PanelOverflowIndicatorCocoa::PanelOverflowIndicatorCocoa() {
+}
+
+PanelOverflowIndicatorCocoa::~PanelOverflowIndicatorCocoa() {
+}
+
+int PanelOverflowIndicatorCocoa::GetHeight() const {
+ return 0;
+}
+
+gfx::Rect PanelOverflowIndicatorCocoa::GetBounds() const {
+ return gfx::Rect();
+}
+
+void PanelOverflowIndicatorCocoa::SetBounds(const gfx::Rect& bounds) {
+}
+
+int PanelOverflowIndicatorCocoa::GetCount() const {
+ return 0;
+}
+
+void PanelOverflowIndicatorCocoa::SetCount(int count) {
+}
+
+void PanelOverflowIndicatorCocoa::DrawAttention() {
+}
+
+void PanelOverflowIndicatorCocoa::StopDrawingAttention() {
+}
+
+bool PanelOverflowIndicatorCocoa::IsDrawingAttention() const {
+ return false;
+}
« no previous file with comments | « chrome/browser/ui/panels/panel_overflow_indicator_cocoa.h ('k') | chrome/browser/ui/panels/panel_overflow_indicator_gtk.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698