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

Unified Diff: chrome/browser/ui/login/login_prompt_win.cc

Issue 8965054: Coverity: Initialize member variables. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Review fixes. Created 9 years 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/login/login_prompt_win.cc
diff --git a/chrome/browser/ui/login/login_prompt_win.cc b/chrome/browser/ui/login/login_prompt_win.cc
index f1f241dd1fae1fd0632b5dfdd391a3cfe30cf1dc..ec17063d2c9ab8c5370c7cc8c8135eeb7f89aec1 100644
--- a/chrome/browser/ui/login/login_prompt_win.cc
+++ b/chrome/browser/ui/login/login_prompt_win.cc
@@ -34,13 +34,14 @@ class LoginHandlerWin : public LoginHandler,
public views::DialogDelegate {
public:
LoginHandlerWin(net::AuthChallengeInfo* auth_info, net::URLRequest* request)
- : LoginHandler(auth_info, request) {
+ : LoginHandler(auth_info, request),
+ login_view_(NULL) {
}
// LoginModelObserver implementation.
virtual void OnAutofillDataAvailable(const string16& username,
const string16& password) OVERRIDE {
- // Nothing to do here since LoginView takes care of autofil for win.
+ // Nothing to do here since LoginView takes care of autofill for win.
}
// views::DialogDelegate methods:
« no previous file with comments | « chrome/browser/extensions/extension_tts_api_win.cc ('k') | chrome/browser/ui/views/bookmarks/bookmark_menu_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698