| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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/ui/passwords/password_manager_presenter.h" | 5 #include "chrome/browser/ui/passwords/password_manager_presenter.h" |
| 6 | 6 |
| 7 #include "base/bind.h" | 7 #include "base/bind.h" |
| 8 #include "base/command_line.h" | 8 #include "base/command_line.h" |
| 9 #include "base/metrics/user_metrics_action.h" | 9 #include "base/metrics/user_metrics_action.h" |
| 10 #include "base/prefs/pref_service.h" | 10 #include "base/prefs/pref_service.h" |
| 11 #include "base/strings/utf_string_conversions.h" | 11 #include "base/strings/utf_string_conversions.h" |
| 12 #include "base/time/time.h" | 12 #include "base/time/time.h" |
| 13 #include "base/values.h" | 13 #include "base/values.h" |
| 14 #include "chrome/browser/password_manager/password_manager_util.h" | |
| 15 #include "chrome/browser/password_manager/password_store_factory.h" | 14 #include "chrome/browser/password_manager/password_store_factory.h" |
| 16 #include "chrome/browser/password_manager/sync_metrics.h" | 15 #include "chrome/browser/password_manager/sync_metrics.h" |
| 17 #include "chrome/browser/profiles/profile.h" | 16 #include "chrome/browser/profiles/profile.h" |
| 18 #include "chrome/browser/ui/passwords/password_ui_view.h" | 17 #include "chrome/browser/ui/passwords/password_ui_view.h" |
| 19 #include "chrome/common/chrome_switches.h" | 18 #include "chrome/common/chrome_switches.h" |
| 20 #include "chrome/common/url_constants.h" | 19 #include "chrome/common/url_constants.h" |
| 21 #include "components/autofill/core/common/password_form.h" | 20 #include "components/autofill/core/common/password_form.h" |
| 21 #include "components/password_manager/core/browser/password_manager_util.h" |
| 22 #include "components/password_manager/core/common/password_manager_pref_names.h" | 22 #include "components/password_manager/core/common/password_manager_pref_names.h" |
| 23 #include "content/public/browser/user_metrics.h" | 23 #include "content/public/browser/user_metrics.h" |
| 24 #include "content/public/browser/web_contents.h" | 24 #include "content/public/browser/web_contents.h" |
| 25 | 25 |
| 26 using password_manager::PasswordStore; | 26 using password_manager::PasswordStore; |
| 27 | 27 |
| 28 PasswordManagerPresenter::PasswordManagerPresenter( | 28 PasswordManagerPresenter::PasswordManagerPresenter( |
| 29 PasswordUIView* password_view) | 29 PasswordUIView* password_view) |
| 30 : populater_(this), | 30 : populater_(this), |
| 31 exception_populater_(this), | 31 exception_populater_(this), |
| (...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 230 } else { | 230 } else { |
| 231 LOG(ERROR) << "No password store! Cannot display exceptions."; | 231 LOG(ERROR) << "No password store! Cannot display exceptions."; |
| 232 } | 232 } |
| 233 } | 233 } |
| 234 | 234 |
| 235 void PasswordManagerPresenter::PasswordExceptionListPopulater:: | 235 void PasswordManagerPresenter::PasswordExceptionListPopulater:: |
| 236 OnGetPasswordStoreResults(ScopedVector<autofill::PasswordForm> results) { | 236 OnGetPasswordStoreResults(ScopedVector<autofill::PasswordForm> results) { |
| 237 page_->password_exception_list_.swap(results); | 237 page_->password_exception_list_.swap(results); |
| 238 page_->SetPasswordExceptionList(); | 238 page_->SetPasswordExceptionList(); |
| 239 } | 239 } |
| OLD | NEW |