| 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 "components/autofill/content/renderer/autofill_agent.h" | 5 #include "components/autofill/content/renderer/autofill_agent.h" |
| 6 | 6 |
| 7 #include <stddef.h> | 7 #include <stddef.h> |
| 8 | 8 |
| 9 #include <tuple> | 9 #include <tuple> |
| 10 | 10 |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 #include "components/autofill/core/common/form_data_predictions.h" | 34 #include "components/autofill/core/common/form_data_predictions.h" |
| 35 #include "components/autofill/core/common/form_field_data.h" | 35 #include "components/autofill/core/common/form_field_data.h" |
| 36 #include "components/autofill/core/common/password_form.h" | 36 #include "components/autofill/core/common/password_form.h" |
| 37 #include "components/autofill/core/common/password_form_fill_data.h" | 37 #include "components/autofill/core/common/password_form_fill_data.h" |
| 38 #include "components/autofill/core/common/save_password_progress_logger.h" | 38 #include "components/autofill/core/common/save_password_progress_logger.h" |
| 39 #include "content/public/common/content_switches.h" | 39 #include "content/public/common/content_switches.h" |
| 40 #include "content/public/common/url_constants.h" | 40 #include "content/public/common/url_constants.h" |
| 41 #include "content/public/renderer/render_frame.h" | 41 #include "content/public/renderer/render_frame.h" |
| 42 #include "content/public/renderer/render_view.h" | 42 #include "content/public/renderer/render_view.h" |
| 43 #include "net/cert/cert_status_flags.h" | 43 #include "net/cert/cert_status_flags.h" |
| 44 #include "services/service_manager/public/cpp/binder_registry.h" |
| 44 #include "services/service_manager/public/cpp/interface_provider.h" | 45 #include "services/service_manager/public/cpp/interface_provider.h" |
| 45 #include "services/service_manager/public/cpp/interface_registry.h" | |
| 46 #include "third_party/WebKit/public/platform/WebKeyboardEvent.h" | 46 #include "third_party/WebKit/public/platform/WebKeyboardEvent.h" |
| 47 #include "third_party/WebKit/public/platform/WebURLRequest.h" | 47 #include "third_party/WebKit/public/platform/WebURLRequest.h" |
| 48 #include "third_party/WebKit/public/web/WebConsoleMessage.h" | 48 #include "third_party/WebKit/public/web/WebConsoleMessage.h" |
| 49 #include "third_party/WebKit/public/web/WebDataSource.h" | 49 #include "third_party/WebKit/public/web/WebDataSource.h" |
| 50 #include "third_party/WebKit/public/web/WebDocument.h" | 50 #include "third_party/WebKit/public/web/WebDocument.h" |
| 51 #include "third_party/WebKit/public/web/WebElementCollection.h" | 51 #include "third_party/WebKit/public/web/WebElementCollection.h" |
| 52 #include "third_party/WebKit/public/web/WebFormControlElement.h" | 52 #include "third_party/WebKit/public/web/WebFormControlElement.h" |
| 53 #include "third_party/WebKit/public/web/WebFormElement.h" | 53 #include "third_party/WebKit/public/web/WebFormElement.h" |
| 54 #include "third_party/WebKit/public/web/WebLocalFrame.h" | 54 #include "third_party/WebKit/public/web/WebLocalFrame.h" |
| 55 #include "third_party/WebKit/public/web/WebNode.h" | 55 #include "third_party/WebKit/public/web/WebNode.h" |
| (...skipping 732 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 788 return autofill_driver_; | 788 return autofill_driver_; |
| 789 } | 789 } |
| 790 | 790 |
| 791 const mojom::PasswordManagerDriverPtr& | 791 const mojom::PasswordManagerDriverPtr& |
| 792 AutofillAgent::GetPasswordManagerDriver() { | 792 AutofillAgent::GetPasswordManagerDriver() { |
| 793 DCHECK(password_autofill_agent_); | 793 DCHECK(password_autofill_agent_); |
| 794 return password_autofill_agent_->GetPasswordManagerDriver(); | 794 return password_autofill_agent_->GetPasswordManagerDriver(); |
| 795 } | 795 } |
| 796 | 796 |
| 797 } // namespace autofill | 797 } // namespace autofill |
| OLD | NEW |