Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(447)

Side by Side Diff: components/autofill/content/renderer/autofill_agent.cc

Issue 2419723002: Move services/shell to services/service_manager (Closed)
Patch Set: rebase Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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/shell/public/cpp/interface_provider.h" 44 #include "services/service_manager/public/cpp/interface_provider.h"
45 #include "services/shell/public/cpp/interface_registry.h" 45 #include "services/service_manager/public/cpp/interface_registry.h"
46 #include "third_party/WebKit/public/platform/WebURLRequest.h" 46 #include "third_party/WebKit/public/platform/WebURLRequest.h"
47 #include "third_party/WebKit/public/web/WebConsoleMessage.h" 47 #include "third_party/WebKit/public/web/WebConsoleMessage.h"
48 #include "third_party/WebKit/public/web/WebDataSource.h" 48 #include "third_party/WebKit/public/web/WebDataSource.h"
49 #include "third_party/WebKit/public/web/WebDocument.h" 49 #include "third_party/WebKit/public/web/WebDocument.h"
50 #include "third_party/WebKit/public/web/WebElementCollection.h" 50 #include "third_party/WebKit/public/web/WebElementCollection.h"
51 #include "third_party/WebKit/public/web/WebFormControlElement.h" 51 #include "third_party/WebKit/public/web/WebFormControlElement.h"
52 #include "third_party/WebKit/public/web/WebFormElement.h" 52 #include "third_party/WebKit/public/web/WebFormElement.h"
53 #include "third_party/WebKit/public/web/WebInputEvent.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"
(...skipping 757 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
OLDNEW
« no previous file with comments | « components/autofill/content/renderer/BUILD.gn ('k') | components/autofill/content/renderer/password_autofill_agent.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698