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

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

Issue 12378016: chrome: Update include paths of string_split.h to its new location. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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 "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_split.h"
10 #include "base/string_util.h" 9 #include "base/string_util.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" 13 #include "chrome/common/autofill/autocheckout_status.h"
14 #include "chrome/common/autofill/web_element_descriptor.h" 14 #include "chrome/common/autofill/web_element_descriptor.h"
15 #include "chrome/common/autofill_messages.h" 15 #include "chrome/common/autofill_messages.h"
16 #include "chrome/common/chrome_constants.h" 16 #include "chrome/common/chrome_constants.h"
17 #include "chrome/common/form_data.h" 17 #include "chrome/common/form_data.h"
18 #include "chrome/common/form_data_predictions.h" 18 #include "chrome/common/form_data_predictions.h"
19 #include "chrome/common/form_field_data.h" 19 #include "chrome/common/form_field_data.h"
20 #include "chrome/renderer/autofill/form_autofill_util.h" 20 #include "chrome/renderer/autofill/form_autofill_util.h"
(...skipping 829 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
OLDNEW
« no previous file with comments | « chrome/installer/util/shell_util.cc ('k') | chrome/renderer/automation/automation_renderer_helper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698