| 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/WebURLRequest.h" | 47 #include "third_party/WebKit/public/platform/WebURLRequest.h" |
| 47 #include "third_party/WebKit/public/web/WebConsoleMessage.h" | 48 #include "third_party/WebKit/public/web/WebConsoleMessage.h" |
| 48 #include "third_party/WebKit/public/web/WebDataSource.h" | 49 #include "third_party/WebKit/public/web/WebDataSource.h" |
| 49 #include "third_party/WebKit/public/web/WebDocument.h" | 50 #include "third_party/WebKit/public/web/WebDocument.h" |
| 50 #include "third_party/WebKit/public/web/WebElementCollection.h" | 51 #include "third_party/WebKit/public/web/WebElementCollection.h" |
| 51 #include "third_party/WebKit/public/web/WebFormControlElement.h" | 52 #include "third_party/WebKit/public/web/WebFormControlElement.h" |
| 52 #include "third_party/WebKit/public/web/WebFormElement.h" | 53 #include "third_party/WebKit/public/web/WebFormElement.h" |
| 53 #include "third_party/WebKit/public/web/WebInputEvent.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" |
| 57 #include "third_party/WebKit/public/web/WebUserGestureIndicator.h" | 57 #include "third_party/WebKit/public/web/WebUserGestureIndicator.h" |
| 58 #include "third_party/WebKit/public/web/WebView.h" | 58 #include "third_party/WebKit/public/web/WebView.h" |
| 59 #include "ui/base/l10n/l10n_util.h" | 59 #include "ui/base/l10n/l10n_util.h" |
| 60 #include "ui/events/keycodes/keyboard_codes.h" | 60 #include "ui/events/keycodes/keyboard_codes.h" |
| 61 | 61 |
| 62 using blink::WebAutofillClient; | 62 using blink::WebAutofillClient; |
| 63 using blink::WebConsoleMessage; | 63 using blink::WebConsoleMessage; |
| (...skipping 749 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 813 void AutofillAgent::LegacyAutofillAgent::OnDestruct() { | 813 void AutofillAgent::LegacyAutofillAgent::OnDestruct() { |
| 814 // No-op. Don't delete |this|. | 814 // No-op. Don't delete |this|. |
| 815 } | 815 } |
| 816 | 816 |
| 817 void AutofillAgent::LegacyAutofillAgent::FocusChangeComplete() { | 817 void AutofillAgent::LegacyAutofillAgent::FocusChangeComplete() { |
| 818 if (agent_) | 818 if (agent_) |
| 819 agent_->FocusChangeComplete(); | 819 agent_->FocusChangeComplete(); |
| 820 } | 820 } |
| 821 | 821 |
| 822 } // namespace autofill | 822 } // namespace autofill |
| OLD | NEW |