Index: chrome/browser/ui/views/passwords/credentials_item_view.h |
diff --git a/chrome/browser/ui/views/passwords/credentials_item_view.h b/chrome/browser/ui/views/passwords/credentials_item_view.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..c9c039f3b8e76fb85693c13cdf585657c0dc4f3d |
--- /dev/null |
+++ b/chrome/browser/ui/views/passwords/credentials_item_view.h |
@@ -0,0 +1,23 @@ |
+// Copyright 2014 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_PASSWORDS_CREDENTIALS_ITEM_VIEW_H_ |
+#define CHROME_BROWSER_UI_VIEWS_PASSWORDS_CREDENTIALS_ITEM_VIEW_H_ |
+ |
+#include "base/macros.h" |
+#include "ui/views/controls/button/label_button.h" |
+ |
+// CredentialsItemView represents a credential view in the account chooser |
+// bubble. |
+class CredentialsItemView : public views::LabelButton { |
+ public: |
+ CredentialsItemView(views::ButtonListener* button_listener, |
+ const base::string16& text); |
+ ~CredentialsItemView() override; |
+ |
+ private: |
+ DISALLOW_COPY_AND_ASSIGN(CredentialsItemView); |
+}; |
+ |
+#endif // CHROME_BROWSER_UI_VIEWS_PASSWORDS_CREDENTIALS_ITEM_VIEW_H_ |