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

Unified Diff: chrome/browser/extensions/extension_action_util.h

Issue 10834279: Give request-to-act badges a grey background, and increase spacing to make it fit. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Use theme service to pick colors for icon background Created 8 years, 3 months 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/extensions/extension_action_util.h
diff --git a/chrome/browser/extensions/extension_action_util.h b/chrome/browser/extensions/extension_action_util.h
new file mode 100644
index 0000000000000000000000000000000000000000..cdf6e3e0b8a5551b41d915a5a8d933f5ca297279
--- /dev/null
+++ b/chrome/browser/extensions/extension_action_util.h
@@ -0,0 +1,37 @@
+// 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_BROWSER_EXTENSIONS_EXTENSION_ACTION_UTIL_H_
+#define CHROME_BROWSER_EXTENSIONS_EXTENSION_ACTION_UTIL_H_
+
+// Utility functions for ExtensionActions that depend on code in the browser
+// component.
+
+class ExtensionAction;
+
+namespace gfx {
+class Canvas;
+class Rect;
+}
+namespace ui {
+class ThemeProvider;
+}
+
+namespace extensions {
+
+// Paint the background and border for |action| on |tab_id|. |bounds| should
+// include the top and bottom of the location bar, and the middle column
+// exactly between two ExtensionActions, so both ExtensionActions can draw on
+// it. This background is only drawn for script badges in the WANTS_ATTENTION
+// state, and consists of a dark grey, 1px border and a lighter grey
+// background with a slight vertical gradient.
+void PaintBackground(const ExtensionAction& action,
+ int tab_id,
+ gfx::Canvas* canvas,
+ const gfx::Rect& bounds,
+ const ui::ThemeProvider& theme);
+
+} // namespace extensions
+
+#endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_ACTION_UTIL_H_
« no previous file with comments | « no previous file | chrome/browser/extensions/extension_action_util.cc » ('j') | chrome/browser/extensions/extension_action_util.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698