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

Unified Diff: chrome/common/badge_util.h

Issue 1472863004: [MD] re-skin extension browser action badges (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: undo file move Created 5 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
« no previous file with comments | « chrome/common/BUILD.gn ('k') | chrome/common/badge_util.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_
« no previous file with comments | « chrome/common/BUILD.gn ('k') | chrome/common/badge_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698