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

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

Issue 2844063003: Migrate RenderFrameImpl to use BinderRegistry. (Closed)
Patch Set: . Created 3 years, 8 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/password_autofill_agent.h" 5 #include "components/autofill/content/renderer/password_autofill_agent.h"
6 6
7 #include <stddef.h> 7 #include <stddef.h>
8 8
9 #include <memory> 9 #include <memory>
10 #include <string> 10 #include <string>
(...skipping 17 matching lines...) Expand all
28 #include "components/autofill/core/common/autofill_constants.h" 28 #include "components/autofill/core/common/autofill_constants.h"
29 #include "components/autofill/core/common/autofill_util.h" 29 #include "components/autofill/core/common/autofill_util.h"
30 #include "components/autofill/core/common/form_field_data.h" 30 #include "components/autofill/core/common/form_field_data.h"
31 #include "components/autofill/core/common/password_form_fill_data.h" 31 #include "components/autofill/core/common/password_form_fill_data.h"
32 #include "components/security_state/core/security_state.h" 32 #include "components/security_state/core/security_state.h"
33 #include "content/public/common/origin_util.h" 33 #include "content/public/common/origin_util.h"
34 #include "content/public/renderer/document_state.h" 34 #include "content/public/renderer/document_state.h"
35 #include "content/public/renderer/navigation_state.h" 35 #include "content/public/renderer/navigation_state.h"
36 #include "content/public/renderer/render_frame.h" 36 #include "content/public/renderer/render_frame.h"
37 #include "content/public/renderer/render_view.h" 37 #include "content/public/renderer/render_view.h"
38 #include "services/service_manager/public/cpp/binder_registry.h"
38 #include "services/service_manager/public/cpp/interface_provider.h" 39 #include "services/service_manager/public/cpp/interface_provider.h"
39 #include "services/service_manager/public/cpp/interface_registry.h"
40 #include "third_party/WebKit/public/platform/WebInputEvent.h" 40 #include "third_party/WebKit/public/platform/WebInputEvent.h"
41 #include "third_party/WebKit/public/platform/WebSecurityOrigin.h" 41 #include "third_party/WebKit/public/platform/WebSecurityOrigin.h"
42 #include "third_party/WebKit/public/platform/WebVector.h" 42 #include "third_party/WebKit/public/platform/WebVector.h"
43 #include "third_party/WebKit/public/web/WebAutofillClient.h" 43 #include "third_party/WebKit/public/web/WebAutofillClient.h"
44 #include "third_party/WebKit/public/web/WebDocument.h" 44 #include "third_party/WebKit/public/web/WebDocument.h"
45 #include "third_party/WebKit/public/web/WebElement.h" 45 #include "third_party/WebKit/public/web/WebElement.h"
46 #include "third_party/WebKit/public/web/WebFormElement.h" 46 #include "third_party/WebKit/public/web/WebFormElement.h"
47 #include "third_party/WebKit/public/web/WebLocalFrame.h" 47 #include "third_party/WebKit/public/web/WebLocalFrame.h"
48 #include "third_party/WebKit/public/web/WebNode.h" 48 #include "third_party/WebKit/public/web/WebNode.h"
49 #include "third_party/WebKit/public/web/WebUserGestureIndicator.h" 49 #include "third_party/WebKit/public/web/WebUserGestureIndicator.h"
(...skipping 1587 matching lines...) Expand 10 before | Expand all | Expand 10 after
1637 PasswordAutofillAgent::GetPasswordManagerDriver() { 1637 PasswordAutofillAgent::GetPasswordManagerDriver() {
1638 if (!password_manager_driver_) { 1638 if (!password_manager_driver_) {
1639 render_frame()->GetRemoteInterfaces()->GetInterface( 1639 render_frame()->GetRemoteInterfaces()->GetInterface(
1640 mojo::MakeRequest(&password_manager_driver_)); 1640 mojo::MakeRequest(&password_manager_driver_));
1641 } 1641 }
1642 1642
1643 return password_manager_driver_; 1643 return password_manager_driver_;
1644 } 1644 }
1645 1645
1646 } // namespace autofill 1646 } // namespace autofill
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698