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

Unified Diff: chrome/browser/ui/views/passwords/credentials_item_view.h

Issue 720573003: New credential chooser bubble view. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: alignment Created 6 years, 1 month 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/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_

Powered by Google App Engine
This is Rietveld 408576698