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

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

Issue 12434004: Move remaining Autofill code to //components/autofill. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix long lines Created 7 years, 9 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 "chrome/renderer/autofill/autofill_agent.h" 5 #include "components/autofill/renderer/autofill_agent.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/message_loop.h" 8 #include "base/message_loop.h"
9 #include "base/string_util.h" 9 #include "base/string_util.h"
10 #include "base/strings/string_split.h" 10 #include "base/strings/string_split.h"
11 #include "base/time.h" 11 #include "base/time.h"
12 #include "base/utf_string_conversions.h" 12 #include "base/utf_string_conversions.h"
13 #include "chrome/renderer/autofill/form_autofill_util.h"
14 #include "chrome/renderer/autofill/password_autofill_manager.h"
15 #include "components/autofill/common/autocheckout_status.h" 13 #include "components/autofill/common/autocheckout_status.h"
16 #include "components/autofill/common/autofill_messages.h" 14 #include "components/autofill/common/autofill_messages.h"
17 #include "components/autofill/common/form_data.h" 15 #include "components/autofill/common/form_data.h"
18 #include "components/autofill/common/form_data_predictions.h" 16 #include "components/autofill/common/form_data_predictions.h"
19 #include "components/autofill/common/form_field_data.h" 17 #include "components/autofill/common/form_field_data.h"
20 #include "components/autofill/common/web_element_descriptor.h" 18 #include "components/autofill/common/web_element_descriptor.h"
19 #include "components/autofill/renderer/form_autofill_util.h"
20 #include "components/autofill/renderer/password_autofill_manager.h"
21 #include "content/public/common/password_form.h" 21 #include "content/public/common/password_form.h"
22 #include "content/public/common/ssl_status.h" 22 #include "content/public/common/ssl_status.h"
23 #include "content/public/renderer/render_view.h" 23 #include "content/public/renderer/render_view.h"
24 #include "grit/chromium_strings.h" 24 #include "grit/chromium_strings.h"
25 #include "grit/generated_resources.h" 25 #include "grit/generated_resources.h"
26 #include "third_party/WebKit/Source/Platform/chromium/public/WebRect.h" 26 #include "third_party/WebKit/Source/Platform/chromium/public/WebRect.h"
27 #include "third_party/WebKit/Source/Platform/chromium/public/WebURLRequest.h" 27 #include "third_party/WebKit/Source/Platform/chromium/public/WebURLRequest.h"
28 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDataSource.h" 28 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDataSource.h"
29 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDocument.h" 29 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDocument.h"
30 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFormControlElement .h" 30 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFormControlElement .h"
(...skipping 818 matching lines...) Expand 10 before | Expand all | Expand 10 after
849 web_view->hidePopups(); 849 web_view->hidePopups();
850 850
851 HideHostPopups(); 851 HideHostPopups();
852 } 852 }
853 853
854 void AutofillAgent::HideHostPopups() { 854 void AutofillAgent::HideHostPopups() {
855 Send(new AutofillHostMsg_HideAutofillPopup(routing_id())); 855 Send(new AutofillHostMsg_HideAutofillPopup(routing_id()));
856 } 856 }
857 857
858 } // namespace autofill 858 } // namespace autofill
OLDNEW
« no previous file with comments | « components/autofill/renderer/autofill_agent.h ('k') | components/autofill/renderer/form_autofill_util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698