| OLD | NEW | 
|    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 "chrome/renderer/autofill/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/common/autofill/autocheckout_status.h" |  | 
|   14 #include "chrome/common/autofill/web_element_descriptor.h" |  | 
|   15 #include "chrome/common/autofill_messages.h" |  | 
|   16 #include "chrome/common/chrome_constants.h" |   13 #include "chrome/common/chrome_constants.h" | 
|   17 #include "chrome/common/form_data.h" |  | 
|   18 #include "chrome/common/form_data_predictions.h" |  | 
|   19 #include "chrome/common/form_field_data.h" |  | 
|   20 #include "chrome/renderer/autofill/form_autofill_util.h" |   14 #include "chrome/renderer/autofill/form_autofill_util.h" | 
|   21 #include "chrome/renderer/autofill/password_autofill_manager.h" |   15 #include "chrome/renderer/autofill/password_autofill_manager.h" | 
 |   16 #include "components/autofill/common/autocheckout_status.h" | 
 |   17 #include "components/autofill/common/autofill_messages.h" | 
 |   18 #include "components/autofill/common/form_data.h" | 
 |   19 #include "components/autofill/common/form_data_predictions.h" | 
 |   20 #include "components/autofill/common/form_field_data.h" | 
 |   21 #include "components/autofill/common/web_element_descriptor.h" | 
|   22 #include "content/public/common/password_form.h" |   22 #include "content/public/common/password_form.h" | 
|   23 #include "content/public/common/ssl_status.h" |   23 #include "content/public/common/ssl_status.h" | 
|   24 #include "content/public/renderer/render_view.h" |   24 #include "content/public/renderer/render_view.h" | 
|   25 #include "grit/chromium_strings.h" |   25 #include "grit/chromium_strings.h" | 
|   26 #include "grit/generated_resources.h" |   26 #include "grit/generated_resources.h" | 
|   27 #include "third_party/WebKit/Source/Platform/chromium/public/WebRect.h" |   27 #include "third_party/WebKit/Source/Platform/chromium/public/WebRect.h" | 
|   28 #include "third_party/WebKit/Source/Platform/chromium/public/WebURLRequest.h" |   28 #include "third_party/WebKit/Source/Platform/chromium/public/WebURLRequest.h" | 
|   29 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDataSource.h" |   29 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDataSource.h" | 
|   30 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDocument.h" |   30 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDocument.h" | 
|   31 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFormControlElement
     .h" |   31 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFormControlElement
     .h" | 
| (...skipping 818 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  850     web_view->hidePopups(); |  850     web_view->hidePopups(); | 
|  851  |  851  | 
|  852   HideHostPopups(); |  852   HideHostPopups(); | 
|  853 } |  853 } | 
|  854  |  854  | 
|  855 void AutofillAgent::HideHostPopups() { |  855 void AutofillAgent::HideHostPopups() { | 
|  856   Send(new AutofillHostMsg_HideAutofillPopup(routing_id())); |  856   Send(new AutofillHostMsg_HideAutofillPopup(routing_id())); | 
|  857 } |  857 } | 
|  858  |  858  | 
|  859 }  // namespace autofill |  859 }  // namespace autofill | 
| OLD | NEW |