| OLD | NEW | 
|---|
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be | 
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. | 
| 4 | 4 | 
| 5 #include "chrome/browser/password_manager/password_manager.h" | 5 #include "chrome/browser/password_manager/password_manager.h" | 
| 6 | 6 | 
| 7 #include <vector> | 7 #include <vector> | 
| 8 | 8 | 
| 9 #include "base/platform_thread.h" | 9 #include "base/platform_thread.h" | 
| 10 #include "base/stl_util-inl.h" | 10 #include "base/stl_util-inl.h" | 
| 11 #include "base/utf_string_conversions.h" | 11 #include "base/utf_string_conversions.h" | 
| 12 #include "chrome/browser/metrics/user_metrics.h" | 12 #include "chrome/browser/metrics/user_metrics.h" | 
| 13 #include "chrome/browser/password_manager/password_form_manager.h" | 13 #include "chrome/browser/password_manager/password_form_manager.h" | 
| 14 #include "chrome/browser/password_manager/password_manager_delegate.h" | 14 #include "chrome/browser/password_manager/password_manager_delegate.h" | 
| 15 #include "chrome/browser/prefs/pref_service.h" | 15 #include "chrome/browser/prefs/pref_service.h" | 
| 16 #include "chrome/browser/profile.h" | 16 #include "chrome/browser/profiles/profile.h" | 
| 17 #include "chrome/common/notification_registrar.h" | 17 #include "chrome/common/notification_registrar.h" | 
| 18 #include "chrome/common/notification_service.h" | 18 #include "chrome/common/notification_service.h" | 
| 19 #include "chrome/common/pref_names.h" | 19 #include "chrome/common/pref_names.h" | 
| 20 #include "chrome/common/render_messages_params.h" | 20 #include "chrome/common/render_messages_params.h" | 
| 21 #include "grit/generated_resources.h" | 21 #include "grit/generated_resources.h" | 
| 22 | 22 | 
| 23 using webkit_glue::PasswordForm; | 23 using webkit_glue::PasswordForm; | 
| 24 using webkit_glue::PasswordFormMap; | 24 using webkit_glue::PasswordFormMap; | 
| 25 | 25 | 
| 26 // static | 26 // static | 
| (...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 217       return; | 217       return; | 
| 218     } | 218     } | 
| 219     default: | 219     default: | 
| 220       if (observer_) { | 220       if (observer_) { | 
| 221         observer_->OnAutofillDataAvailable( | 221         observer_->OnAutofillDataAvailable( | 
| 222             UTF16ToWideHack(preferred_match->username_value), | 222             UTF16ToWideHack(preferred_match->username_value), | 
| 223             UTF16ToWideHack(preferred_match->password_value)); | 223             UTF16ToWideHack(preferred_match->password_value)); | 
| 224       } | 224       } | 
| 225   } | 225   } | 
| 226 } | 226 } | 
| OLD | NEW | 
|---|