| 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 25 matching lines...) Expand all Loading... |
| 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/interface_provider.h" | 44 #include "services/service_manager/public/cpp/interface_provider.h" |
| 45 #include "services/service_manager/public/cpp/interface_registry.h" | 45 #include "services/service_manager/public/cpp/interface_registry.h" |
| 46 #include "third_party/WebKit/public/platform/WebInputEvent.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" |
| 56 #include "third_party/WebKit/public/web/WebOptionElement.h" | 56 #include "third_party/WebKit/public/web/WebOptionElement.h" |
| (...skipping 761 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 818 void AutofillAgent::LegacyAutofillAgent::OnDestruct() { | 818 void AutofillAgent::LegacyAutofillAgent::OnDestruct() { |
| 819 // No-op. Don't delete |this|. | 819 // No-op. Don't delete |this|. |
| 820 } | 820 } |
| 821 | 821 |
| 822 void AutofillAgent::LegacyAutofillAgent::FocusChangeComplete() { | 822 void AutofillAgent::LegacyAutofillAgent::FocusChangeComplete() { |
| 823 if (agent_) | 823 if (agent_) |
| 824 agent_->FocusChangeComplete(); | 824 agent_->FocusChangeComplete(); |
| 825 } | 825 } |
| 826 | 826 |
| 827 } // namespace autofill | 827 } // namespace autofill |
| OLD | NEW |