Index: chrome/common/badge_util.h |
diff --git a/chrome/common/badge_util.h b/chrome/common/badge_util.h |
deleted file mode 100644 |
index b6b8dccc74af1632da5d56f63beebdcaf8e28509..0000000000000000000000000000000000000000 |
--- a/chrome/common/badge_util.h |
+++ /dev/null |
@@ -1,39 +0,0 @@ |
-// Copyright (c) 2012 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. |
- |
-#ifndef CHROME_COMMON_BADGE_UTIL_H_ |
-#define CHROME_COMMON_BADGE_UTIL_H_ |
- |
-#include <string> |
- |
-#include "base/strings/string16.h" |
-#include "chrome/common/extensions/api/extension_action/action_info.h" |
-#include "third_party/skia/include/core/SkBitmap.h" |
- |
-class SkPaint; |
- |
-namespace gfx { |
-class Canvas; |
-class Rect; |
-} |
- |
-// badge_util provides a set of helper routines for rendering dynamically |
-// generated text overlays ("badges") on toolbar icons. |
-namespace badge_util { |
- |
-// Helper routine that returns a singleton SkPaint object configured for |
-// rendering badge overlay text (correct font, typeface, etc). |
-SkPaint* GetBadgeTextPaintSingleton(); |
- |
-// Paints badge with specified parameters to |canvas|. |
-void PaintBadge(gfx::Canvas* canvas, |
- const gfx::Rect& bounds, |
- const std::string& text, |
- const SkColor& text_color_in, |
- const SkColor& background_color_in, |
- int icon_width); |
- |
-} // namespace badge_util |
- |
-#endif // CHROME_COMMON_BADGE_UTIL_H_ |