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

Unified Diff: chrome/browser/ui/views/login_view.h

Issue 9704056: Login dialog->views on cros too. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 9 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
« no previous file with comments | « chrome/browser/ui/login/login_prompt_win.cc ('k') | chrome/browser/ui/views/login_view.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/views/login_view.h
===================================================================
--- chrome/browser/ui/views/login_view.h (revision 126924)
+++ chrome/browser/ui/views/login_view.h (working copy)
@@ -22,16 +22,16 @@
// |model| is observed for the entire lifetime of the LoginView.
// Therefore |model| should not be destroyed before the LoginView
// object.
- LoginView(const std::wstring& explanation, LoginModel* model);
+ LoginView(const string16& explanation, LoginModel* model);
virtual ~LoginView();
// Access the data in the username/password text fields.
- std::wstring GetUsername();
- std::wstring GetPassword();
+ string16 GetUsername();
+ string16 GetPassword();
// LoginModelObserver implementation.
- virtual void OnAutofillDataAvailable(const std::wstring& username,
- const std::wstring& password) OVERRIDE;
+ virtual void OnAutofillDataAvailable(const string16& username,
+ const string16& password) OVERRIDE;
// Used by LoginHandlerWin to set the initial focus.
views::View* GetInitiallyFocusedView();
« no previous file with comments | « chrome/browser/ui/login/login_prompt_win.cc ('k') | chrome/browser/ui/views/login_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698