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 <tuple> | 7 #include <tuple> |
8 | 8 |
9 #include "base/auto_reset.h" | 9 #include "base/auto_reset.h" |
10 #include "base/bind.h" | 10 #include "base/bind.h" |
(...skipping 12 matching lines...) Expand all Loading... |
23 #include "components/autofill/content/renderer/password_autofill_agent.h" | 23 #include "components/autofill/content/renderer/password_autofill_agent.h" |
24 #include "components/autofill/content/renderer/password_generation_agent.h" | 24 #include "components/autofill/content/renderer/password_generation_agent.h" |
25 #include "components/autofill/core/common/autofill_constants.h" | 25 #include "components/autofill/core/common/autofill_constants.h" |
26 #include "components/autofill/core/common/autofill_data_validation.h" | 26 #include "components/autofill/core/common/autofill_data_validation.h" |
27 #include "components/autofill/core/common/autofill_switches.h" | 27 #include "components/autofill/core/common/autofill_switches.h" |
28 #include "components/autofill/core/common/autofill_util.h" | 28 #include "components/autofill/core/common/autofill_util.h" |
29 #include "components/autofill/core/common/form_data.h" | 29 #include "components/autofill/core/common/form_data.h" |
30 #include "components/autofill/core/common/form_data_predictions.h" | 30 #include "components/autofill/core/common/form_data_predictions.h" |
31 #include "components/autofill/core/common/form_field_data.h" | 31 #include "components/autofill/core/common/form_field_data.h" |
32 #include "components/autofill/core/common/password_form.h" | 32 #include "components/autofill/core/common/password_form.h" |
33 #include "components/autofill/core/common/web_element_descriptor.h" | |
34 #include "content/public/common/content_switches.h" | 33 #include "content/public/common/content_switches.h" |
35 #include "content/public/common/ssl_status.h" | 34 #include "content/public/common/ssl_status.h" |
36 #include "content/public/common/url_constants.h" | 35 #include "content/public/common/url_constants.h" |
37 #include "content/public/renderer/render_frame.h" | 36 #include "content/public/renderer/render_frame.h" |
38 #include "content/public/renderer/render_view.h" | 37 #include "content/public/renderer/render_view.h" |
39 #include "net/cert/cert_status_flags.h" | 38 #include "net/cert/cert_status_flags.h" |
40 #include "third_party/WebKit/public/platform/WebRect.h" | 39 #include "third_party/WebKit/public/platform/WebRect.h" |
41 #include "third_party/WebKit/public/platform/WebURLRequest.h" | 40 #include "third_party/WebKit/public/platform/WebURLRequest.h" |
42 #include "third_party/WebKit/public/web/WebConsoleMessage.h" | 41 #include "third_party/WebKit/public/web/WebConsoleMessage.h" |
43 #include "third_party/WebKit/public/web/WebDataSource.h" | 42 #include "third_party/WebKit/public/web/WebDataSource.h" |
(...skipping 772 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
816 | 815 |
817 void AutofillAgent::LegacyAutofillAgent::OnDestruct() { | 816 void AutofillAgent::LegacyAutofillAgent::OnDestruct() { |
818 // No-op. Don't delete |this|. | 817 // No-op. Don't delete |this|. |
819 } | 818 } |
820 | 819 |
821 void AutofillAgent::LegacyAutofillAgent::FocusChangeComplete() { | 820 void AutofillAgent::LegacyAutofillAgent::FocusChangeComplete() { |
822 agent_->FocusChangeComplete(); | 821 agent_->FocusChangeComplete(); |
823 } | 822 } |
824 | 823 |
825 } // namespace autofill | 824 } // namespace autofill |
OLD | NEW |