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

Side by Side Diff: components/autofill/core/browser/autofill_manager.cc

Issue 17392006: In components/autofill, move browser/ to core/browser/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase to fix conflicts Created 7 years, 6 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/browser/autofill_manager.h" 5 #include "components/autofill/core/browser/autofill_manager.h"
6 6
7 #include <stddef.h> 7 #include <stddef.h>
8 8
9 #include <limits> 9 #include <limits>
10 #include <map> 10 #include <map>
11 #include <set> 11 #include <set>
12 #include <utility> 12 #include <utility>
13 13
14 #include "base/bind.h" 14 #include "base/bind.h"
15 #include "base/command_line.h" 15 #include "base/command_line.h"
16 #include "base/guid.h" 16 #include "base/guid.h"
17 #include "base/logging.h" 17 #include "base/logging.h"
18 #include "base/prefs/pref_service.h" 18 #include "base/prefs/pref_service.h"
19 #include "base/strings/string16.h" 19 #include "base/strings/string16.h"
20 #include "base/strings/string_util.h" 20 #include "base/strings/string_util.h"
21 #include "base/strings/utf_string_conversions.h" 21 #include "base/strings/utf_string_conversions.h"
22 #include "base/threading/sequenced_worker_pool.h" 22 #include "base/threading/sequenced_worker_pool.h"
23 #include "components/autofill/browser/autocomplete_history_manager.h"
24 #include "components/autofill/browser/autofill_data_model.h"
25 #include "components/autofill/browser/autofill_driver.h"
26 #include "components/autofill/browser/autofill_external_delegate.h"
27 #include "components/autofill/browser/autofill_field.h"
28 #include "components/autofill/browser/autofill_manager_delegate.h"
29 #include "components/autofill/browser/autofill_manager_test_delegate.h"
30 #include "components/autofill/browser/autofill_metrics.h"
31 #include "components/autofill/browser/autofill_profile.h"
32 #include "components/autofill/browser/autofill_type.h"
33 #include "components/autofill/browser/credit_card.h"
34 #include "components/autofill/browser/form_structure.h"
35 #include "components/autofill/browser/personal_data_manager.h"
36 #include "components/autofill/browser/phone_number.h"
37 #include "components/autofill/browser/phone_number_i18n.h"
38 #include "components/autofill/content/browser/autocheckout/whitelist_manager.h" 23 #include "components/autofill/content/browser/autocheckout/whitelist_manager.h"
39 #include "components/autofill/content/browser/autocheckout_manager.h" 24 #include "components/autofill/content/browser/autocheckout_manager.h"
25 #include "components/autofill/core/browser/autocomplete_history_manager.h"
26 #include "components/autofill/core/browser/autofill_data_model.h"
27 #include "components/autofill/core/browser/autofill_driver.h"
28 #include "components/autofill/core/browser/autofill_external_delegate.h"
29 #include "components/autofill/core/browser/autofill_field.h"
30 #include "components/autofill/core/browser/autofill_manager_delegate.h"
31 #include "components/autofill/core/browser/autofill_manager_test_delegate.h"
32 #include "components/autofill/core/browser/autofill_metrics.h"
33 #include "components/autofill/core/browser/autofill_profile.h"
34 #include "components/autofill/core/browser/autofill_type.h"
35 #include "components/autofill/core/browser/credit_card.h"
36 #include "components/autofill/core/browser/form_structure.h"
37 #include "components/autofill/core/browser/personal_data_manager.h"
38 #include "components/autofill/core/browser/phone_number.h"
39 #include "components/autofill/core/browser/phone_number_i18n.h"
40 #include "components/autofill/core/common/autofill_messages.h" 40 #include "components/autofill/core/common/autofill_messages.h"
41 #include "components/autofill/core/common/autofill_pref_names.h" 41 #include "components/autofill/core/common/autofill_pref_names.h"
42 #include "components/autofill/core/common/autofill_switches.h" 42 #include "components/autofill/core/common/autofill_switches.h"
43 #include "components/autofill/core/common/form_data.h" 43 #include "components/autofill/core/common/form_data.h"
44 #include "components/autofill/core/common/form_data_predictions.h" 44 #include "components/autofill/core/common/form_data_predictions.h"
45 #include "components/autofill/core/common/form_field_data.h" 45 #include "components/autofill/core/common/form_field_data.h"
46 #include "components/autofill/core/common/password_form_fill_data.h" 46 #include "components/autofill/core/common/password_form_fill_data.h"
47 #include "components/user_prefs/pref_registry_syncable.h" 47 #include "components/user_prefs/pref_registry_syncable.h"
48 #include "content/public/browser/browser_context.h" 48 #include "content/public/browser/browser_context.h"
49 #include "content/public/browser/browser_thread.h" 49 #include "content/public/browser/browser_thread.h"
(...skipping 1243 matching lines...) Expand 10 before | Expand all | Expand 10 after
1293 1293
1294 void AutofillManager::UpdateInitialInteractionTimestamp( 1294 void AutofillManager::UpdateInitialInteractionTimestamp(
1295 const TimeTicks& interaction_timestamp) { 1295 const TimeTicks& interaction_timestamp) {
1296 if (initial_interaction_timestamp_.is_null() || 1296 if (initial_interaction_timestamp_.is_null() ||
1297 interaction_timestamp < initial_interaction_timestamp_) { 1297 interaction_timestamp < initial_interaction_timestamp_) {
1298 initial_interaction_timestamp_ = interaction_timestamp; 1298 initial_interaction_timestamp_ = interaction_timestamp;
1299 } 1299 }
1300 } 1300 }
1301 1301
1302 } // namespace autofill 1302 } // namespace autofill
OLDNEW
« no previous file with comments | « components/autofill/core/browser/autofill_manager.h ('k') | components/autofill/core/browser/autofill_manager_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698