Index: chrome/browser/chromeos/extensions/gfx_utils.h |
diff --git a/chrome/browser/chromeos/extensions/gfx_utils.h b/chrome/browser/chromeos/extensions/gfx_utils.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..64a5f7d11ef18aebc886b10a06a5bf48e85c2476 |
--- /dev/null |
+++ b/chrome/browser/chromeos/extensions/gfx_utils.h |
@@ -0,0 +1,30 @@ |
+// Copyright 2016 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_CHROMEOS_EXTENSIONS_GFX_UTILS_H_ |
+#define CHROME_BROWSER_CHROMEOS_EXTENSIONS_GFX_UTILS_H_ |
+ |
+#include <string> |
+ |
+namespace content { |
+class BrowserContext; |
+} |
+ |
+namespace gfx { |
+class ImageSkia; |
+} |
+ |
+namespace extensions { |
+namespace util { |
+ |
+// May apply additional badge in order to distinguish dual apps from Chrome and |
+// Android side. |
+bool MaybeApplyChromeBadge(content::BrowserContext* context, |
+ const std::string& extension_id, |
+ gfx::ImageSkia* icon_out); |
+ |
+} // namespace util |
+} // namespace extensions |
+ |
+#endif // CHROME_BROWSER_CHROMEOS_EXTENSIONS_GFX_UTILS_H_ |