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

Unified Diff: chrome/common/extensions/extension_constants.h

Issue 10905005: Change browser/page action default icon defined in manifest to support hidpi. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 8 years, 4 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/common/extensions/extension_constants.h
diff --git a/chrome/common/extensions/extension_constants.h b/chrome/common/extensions/extension_constants.h
index b5adf79fa7231194864f382441b56f4ef1e66849..259ed0dc330eed1d0e80c4fb1180d126ec015820 100644
--- a/chrome/common/extensions/extension_constants.h
+++ b/chrome/common/extensions/extension_constants.h
@@ -255,6 +255,7 @@ namespace extension_misc {
EXTENSION_ICON_MEDIUM = 48,
EXTENSION_ICON_SMALL = 32,
EXTENSION_ICON_SMALLISH = 24,
+ EXTENSION_ICON_ACTION = 19,
EXTENSION_ICON_BITTY = 16,
EXTENSION_ICON_INVALID = 0,
};
@@ -263,6 +264,14 @@ namespace extension_misc {
extern const int kExtensionIconSizes[];
extern const size_t kNumExtensionIconSizes;
+ // List of sizes for extension icons that can be defined in the manifest.
+ extern const int kExtensionActionIconSizes[];
+ extern const size_t kNumExtensionActionIconSizes;
+
+ // List of sizes for extension icons that can be defined in the manifest.
+ extern const int kScriptBadgeIconSizes[];
+ extern const size_t kNumScriptBadgeIconSizes;
+
} // extension_misc
#endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_

Powered by Google App Engine
This is Rietveld 408576698