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

Side by Side Diff: components/autofill/content/renderer/password_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/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 13 matching lines...) Expand all
24 #include "components/autofill/content/renderer/password_form_conversion_utils.h" 24 #include "components/autofill/content/renderer/password_form_conversion_utils.h"
25 #include "components/autofill/content/renderer/renderer_save_password_progress_l ogger.h" 25 #include "components/autofill/content/renderer/renderer_save_password_progress_l ogger.h"
26 #include "components/autofill/core/common/autofill_constants.h" 26 #include "components/autofill/core/common/autofill_constants.h"
27 #include "components/autofill/core/common/autofill_util.h" 27 #include "components/autofill/core/common/autofill_util.h"
28 #include "components/autofill/core/common/form_field_data.h" 28 #include "components/autofill/core/common/form_field_data.h"
29 #include "components/autofill/core/common/password_form_fill_data.h" 29 #include "components/autofill/core/common/password_form_fill_data.h"
30 #include "content/public/renderer/document_state.h" 30 #include "content/public/renderer/document_state.h"
31 #include "content/public/renderer/navigation_state.h" 31 #include "content/public/renderer/navigation_state.h"
32 #include "content/public/renderer/render_frame.h" 32 #include "content/public/renderer/render_frame.h"
33 #include "content/public/renderer/render_view.h" 33 #include "content/public/renderer/render_view.h"
34 #include "services/shell/public/cpp/interface_provider.h" 34 #include "services/service_manager/public/cpp/interface_provider.h"
35 #include "services/shell/public/cpp/interface_registry.h" 35 #include "services/service_manager/public/cpp/interface_registry.h"
36 #include "third_party/WebKit/public/platform/WebSecurityOrigin.h" 36 #include "third_party/WebKit/public/platform/WebSecurityOrigin.h"
37 #include "third_party/WebKit/public/platform/WebVector.h" 37 #include "third_party/WebKit/public/platform/WebVector.h"
38 #include "third_party/WebKit/public/web/WebAutofillClient.h" 38 #include "third_party/WebKit/public/web/WebAutofillClient.h"
39 #include "third_party/WebKit/public/web/WebDocument.h" 39 #include "third_party/WebKit/public/web/WebDocument.h"
40 #include "third_party/WebKit/public/web/WebElement.h" 40 #include "third_party/WebKit/public/web/WebElement.h"
41 #include "third_party/WebKit/public/web/WebFormElement.h" 41 #include "third_party/WebKit/public/web/WebFormElement.h"
42 #include "third_party/WebKit/public/web/WebInputEvent.h" 42 #include "third_party/WebKit/public/web/WebInputEvent.h"
43 #include "third_party/WebKit/public/web/WebLocalFrame.h" 43 #include "third_party/WebKit/public/web/WebLocalFrame.h"
44 #include "third_party/WebKit/public/web/WebNode.h" 44 #include "third_party/WebKit/public/web/WebNode.h"
45 #include "third_party/WebKit/public/web/WebUserGestureIndicator.h" 45 #include "third_party/WebKit/public/web/WebUserGestureIndicator.h"
(...skipping 1460 matching lines...) Expand 10 before | Expand all | Expand 10 after
1506 PasswordAutofillAgent::GetPasswordManagerDriver() { 1506 PasswordAutofillAgent::GetPasswordManagerDriver() {
1507 if (!password_manager_driver_) { 1507 if (!password_manager_driver_) {
1508 render_frame()->GetRemoteInterfaces()->GetInterface( 1508 render_frame()->GetRemoteInterfaces()->GetInterface(
1509 mojo::GetProxy(&password_manager_driver_)); 1509 mojo::GetProxy(&password_manager_driver_));
1510 } 1510 }
1511 1511
1512 return password_manager_driver_; 1512 return password_manager_driver_;
1513 } 1513 }
1514 1514
1515 } // namespace autofill 1515 } // namespace autofill
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698