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

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

Issue 15018020: Separate component resources into their own .grd file (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge and fix docs Created 7 years, 7 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 "components/autofill/renderer/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/command_line.h" 8 #include "base/command_line.h"
9 #include "base/message_loop.h" 9 #include "base/message_loop.h"
10 #include "base/string_util.h" 10 #include "base/string_util.h"
11 #include "base/strings/string_split.h" 11 #include "base/strings/string_split.h"
12 #include "base/time.h" 12 #include "base/time.h"
13 #include "base/utf_string_conversions.h" 13 #include "base/utf_string_conversions.h"
14 #include "components/autofill/common/autocheckout_status.h" 14 #include "components/autofill/common/autocheckout_status.h"
15 #include "components/autofill/common/autofill_constants.h" 15 #include "components/autofill/common/autofill_constants.h"
16 #include "components/autofill/common/autofill_messages.h" 16 #include "components/autofill/common/autofill_messages.h"
17 #include "components/autofill/common/autofill_switches.h" 17 #include "components/autofill/common/autofill_switches.h"
18 #include "components/autofill/common/form_data.h" 18 #include "components/autofill/common/form_data.h"
19 #include "components/autofill/common/form_data_predictions.h" 19 #include "components/autofill/common/form_data_predictions.h"
20 #include "components/autofill/common/form_field_data.h" 20 #include "components/autofill/common/form_field_data.h"
21 #include "components/autofill/common/web_element_descriptor.h" 21 #include "components/autofill/common/web_element_descriptor.h"
22 #include "components/autofill/renderer/form_autofill_util.h" 22 #include "components/autofill/renderer/form_autofill_util.h"
23 #include "components/autofill/renderer/page_click_tracker.h" 23 #include "components/autofill/renderer/page_click_tracker.h"
24 #include "components/autofill/renderer/password_autofill_agent.h" 24 #include "components/autofill/renderer/password_autofill_agent.h"
25 #include "content/public/common/password_form.h" 25 #include "content/public/common/password_form.h"
26 #include "content/public/common/ssl_status.h" 26 #include "content/public/common/ssl_status.h"
27 #include "content/public/renderer/render_view.h" 27 #include "content/public/renderer/render_view.h"
28 #include "grit/chromium_strings.h" 28 #include "grit/component_resources.h"
29 #include "grit/generated_resources.h"
30 #include "third_party/WebKit/Source/Platform/chromium/public/WebRect.h" 29 #include "third_party/WebKit/Source/Platform/chromium/public/WebRect.h"
31 #include "third_party/WebKit/Source/Platform/chromium/public/WebURLRequest.h" 30 #include "third_party/WebKit/Source/Platform/chromium/public/WebURLRequest.h"
32 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDataSource.h" 31 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDataSource.h"
33 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDocument.h" 32 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDocument.h"
34 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFormControlElement .h" 33 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFormControlElement .h"
35 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFormElement.h" 34 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFormElement.h"
36 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrame.h" 35 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrame.h"
37 #include "third_party/WebKit/Source/WebKit/chromium/public/WebInputEvent.h" 36 #include "third_party/WebKit/Source/WebKit/chromium/public/WebInputEvent.h"
38 #include "third_party/WebKit/Source/WebKit/chromium/public/WebNode.h" 37 #include "third_party/WebKit/Source/WebKit/chromium/public/WebNode.h"
39 #include "third_party/WebKit/Source/WebKit/chromium/public/WebNodeCollection.h" 38 #include "third_party/WebKit/Source/WebKit/chromium/public/WebNodeCollection.h"
(...skipping 943 matching lines...) Expand 10 before | Expand all | Expand 10 after
983 if (!forms.empty()) { 982 if (!forms.empty()) {
984 if (click_timer_.IsRunning()) 983 if (click_timer_.IsRunning())
985 click_timer_.Stop(); 984 click_timer_.Stop();
986 Send(new AutofillHostMsg_FormsSeen(routing_id(), forms, 985 Send(new AutofillHostMsg_FormsSeen(routing_id(), forms,
987 forms_seen_timestamp_, 986 forms_seen_timestamp_,
988 state)); 987 state));
989 } 988 }
990 } 989 }
991 990
992 } // namespace autofill 991 } // namespace autofill
OLDNEW
« no previous file with comments | « components/autofill/browser/wallet/wallet_items.cc ('k') | components/autofill/renderer/form_cache.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698