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

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

Issue 16879006: In components/autofill, move common/ to core/common/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase to fix conflict 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/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>
(...skipping 17 matching lines...) Expand all
28 #include "components/autofill/browser/autofill_manager_delegate.h" 28 #include "components/autofill/browser/autofill_manager_delegate.h"
29 #include "components/autofill/browser/autofill_manager_test_delegate.h" 29 #include "components/autofill/browser/autofill_manager_test_delegate.h"
30 #include "components/autofill/browser/autofill_metrics.h" 30 #include "components/autofill/browser/autofill_metrics.h"
31 #include "components/autofill/browser/autofill_profile.h" 31 #include "components/autofill/browser/autofill_profile.h"
32 #include "components/autofill/browser/autofill_type.h" 32 #include "components/autofill/browser/autofill_type.h"
33 #include "components/autofill/browser/credit_card.h" 33 #include "components/autofill/browser/credit_card.h"
34 #include "components/autofill/browser/form_structure.h" 34 #include "components/autofill/browser/form_structure.h"
35 #include "components/autofill/browser/personal_data_manager.h" 35 #include "components/autofill/browser/personal_data_manager.h"
36 #include "components/autofill/browser/phone_number.h" 36 #include "components/autofill/browser/phone_number.h"
37 #include "components/autofill/browser/phone_number_i18n.h" 37 #include "components/autofill/browser/phone_number_i18n.h"
38 #include "components/autofill/common/autofill_messages.h"
39 #include "components/autofill/common/autofill_pref_names.h"
40 #include "components/autofill/common/autofill_switches.h"
41 #include "components/autofill/common/form_data.h"
42 #include "components/autofill/common/form_data_predictions.h"
43 #include "components/autofill/common/form_field_data.h"
44 #include "components/autofill/common/password_form_fill_data.h"
45 #include "components/autofill/content/browser/autocheckout/whitelist_manager.h" 38 #include "components/autofill/content/browser/autocheckout/whitelist_manager.h"
46 #include "components/autofill/content/browser/autocheckout_manager.h" 39 #include "components/autofill/content/browser/autocheckout_manager.h"
40 #include "components/autofill/core/common/autofill_messages.h"
41 #include "components/autofill/core/common/autofill_pref_names.h"
42 #include "components/autofill/core/common/autofill_switches.h"
43 #include "components/autofill/core/common/form_data.h"
44 #include "components/autofill/core/common/form_data_predictions.h"
45 #include "components/autofill/core/common/form_field_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"
50 #include "content/public/browser/navigation_details.h" 50 #include "content/public/browser/navigation_details.h"
51 #include "content/public/browser/render_view_host.h" 51 #include "content/public/browser/render_view_host.h"
52 #include "content/public/browser/web_contents.h" 52 #include "content/public/browser/web_contents.h"
53 #include "content/public/browser/web_contents_view.h" 53 #include "content/public/browser/web_contents_view.h"
54 #include "content/public/common/frame_navigate_params.h" 54 #include "content/public/common/frame_navigate_params.h"
55 #include "content/public/common/url_constants.h" 55 #include "content/public/common/url_constants.h"
56 #include "googleurl/src/gurl.h" 56 #include "googleurl/src/gurl.h"
(...skipping 1236 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/browser/autofill_manager.h ('k') | components/autofill/browser/autofill_manager_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698