Index: chrome/browser/ui/views/profiles/avatar_button_style.h |
diff --git a/chrome/browser/ui/views/profiles/avatar_button_style.h b/chrome/browser/ui/views/profiles/avatar_button_style.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..d1fcbe28a0526a99c95303342d94efd193558e08 |
--- /dev/null |
+++ b/chrome/browser/ui/views/profiles/avatar_button_style.h |
@@ -0,0 +1,14 @@ |
+// 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_UI_VIEWS_PROFILES_AVATAR_BUTTON_STYLE_H_ |
+#define CHROME_BROWSER_UI_VIEWS_PROFILES_AVATAR_BUTTON_STYLE_H_ |
+ |
+// Different Avatar button styles that can be applied. |
+enum AvatarButtonStyle { |
sky
2016/01/20 17:05:36
enum class?
tapted
2016/01/21 01:33:21
Done.
|
+ AVATAR_BUTTON_THEMED, // Used in a themed browser window. |
+ AVATAR_BUTTON_NATIVE, // Used in a native aero or metro window. |
+}; |
+ |
+#endif // CHROME_BROWSER_UI_VIEWS_PROFILES_AVATAR_BUTTON_STYLE_H_ |