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

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

Issue 12434004: Move remaining Autofill code to //components/autofill. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix long lines 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 #ifndef CHROME_BROWSER_AUTOFILL_AUTOFILL_MANAGER_H_ 5 #ifndef COMPONENTS_AUTOFILL_BROWSER_AUTOFILL_MANAGER_H_
6 #define CHROME_BROWSER_AUTOFILL_AUTOFILL_MANAGER_H_ 6 #define COMPONENTS_AUTOFILL_BROWSER_AUTOFILL_MANAGER_H_
7 7
8 #include <list> 8 #include <list>
9 #include <map> 9 #include <map>
10 #include <string> 10 #include <string>
11 #include <vector> 11 #include <vector>
12 12
13 #include "base/basictypes.h" 13 #include "base/basictypes.h"
14 #include "base/callback_forward.h" 14 #include "base/callback_forward.h"
15 #include "base/compiler_specific.h" 15 #include "base/compiler_specific.h"
16 #include "base/gtest_prod_util.h" 16 #include "base/gtest_prod_util.h"
17 #include "base/memory/scoped_ptr.h" 17 #include "base/memory/scoped_ptr.h"
18 #include "base/memory/scoped_vector.h" 18 #include "base/memory/scoped_vector.h"
19 #include "base/memory/weak_ptr.h" 19 #include "base/memory/weak_ptr.h"
20 #include "base/prefs/public/pref_change_registrar.h" 20 #include "base/prefs/public/pref_change_registrar.h"
21 #include "base/string16.h" 21 #include "base/string16.h"
22 #include "base/supports_user_data.h" 22 #include "base/supports_user_data.h"
23 #include "base/time.h" 23 #include "base/time.h"
24 #include "chrome/browser/autofill/autocheckout_manager.h" 24 #include "components/autofill/browser/autocheckout_manager.h"
25 #include "chrome/browser/autofill/autocomplete_history_manager.h" 25 #include "components/autofill/browser/autocomplete_history_manager.h"
26 #include "chrome/browser/autofill/autofill_download.h" 26 #include "components/autofill/browser/autofill_download.h"
27 #include "chrome/browser/autofill/autofill_manager_delegate.h" 27 #include "components/autofill/browser/autofill_manager_delegate.h"
28 #include "chrome/browser/autofill/field_types.h" 28 #include "components/autofill/browser/field_types.h"
29 #include "chrome/browser/autofill/form_structure.h" 29 #include "components/autofill/browser/form_structure.h"
30 #include "chrome/browser/autofill/personal_data_manager.h" 30 #include "components/autofill/browser/personal_data_manager.h"
31 #include "components/autofill/common/autocheckout_status.h" 31 #include "components/autofill/common/autocheckout_status.h"
32 #include "components/autofill/common/form_data.h" 32 #include "components/autofill/common/form_data.h"
33 #include "content/public/browser/web_contents_observer.h" 33 #include "content/public/browser/web_contents_observer.h"
34 #include "content/public/common/ssl_status.h" 34 #include "content/public/common/ssl_status.h"
35 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFormElement.h" 35 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFormElement.h"
36 36
37 class AutofillExternalDelegate; 37 class AutofillExternalDelegate;
38 class AutofillField; 38 class AutofillField;
39 class AutofillProfile; 39 class AutofillProfile;
40 class AutofillMetrics; 40 class AutofillMetrics;
(...skipping 391 matching lines...) Expand 10 before | Expand all | Expand 10 after
432 FRIEND_TEST_ALL_PREFIXES(AutofillManagerTest, TestExternalDelegate); 432 FRIEND_TEST_ALL_PREFIXES(AutofillManagerTest, TestExternalDelegate);
433 FRIEND_TEST_ALL_PREFIXES(AutofillManagerTest, 433 FRIEND_TEST_ALL_PREFIXES(AutofillManagerTest,
434 TestTabContentsWithExternalDelegate); 434 TestTabContentsWithExternalDelegate);
435 FRIEND_TEST_ALL_PREFIXES(AutofillMetricsTest, 435 FRIEND_TEST_ALL_PREFIXES(AutofillMetricsTest,
436 UserHappinessFormLoadAndSubmission); 436 UserHappinessFormLoadAndSubmission);
437 FRIEND_TEST_ALL_PREFIXES(AutofillMetricsTest, UserHappinessFormInteraction); 437 FRIEND_TEST_ALL_PREFIXES(AutofillMetricsTest, UserHappinessFormInteraction);
438 438
439 DISALLOW_COPY_AND_ASSIGN(AutofillManager); 439 DISALLOW_COPY_AND_ASSIGN(AutofillManager);
440 }; 440 };
441 441
442 #endif // CHROME_BROWSER_AUTOFILL_AUTOFILL_MANAGER_H_ 442 #endif // COMPONENTS_AUTOFILL_BROWSER_AUTOFILL_MANAGER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698