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

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

Issue 2511973004: components: Cleanup class/struct fwd declarations (Closed)
Patch Set: Rebase on top of current master branch Created 4 years 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
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_MANAGER_H_ 5 #ifndef COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_MANAGER_H_
6 #define COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_MANAGER_H_ 6 #define COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_MANAGER_H_
7 7
8 #include <deque> 8 #include <deque>
9 #include <map> 9 #include <map>
10 #include <memory> 10 #include <memory>
(...skipping 26 matching lines...) Expand all
37 37
38 // This define protects some debugging code (see DumpAutofillData). This 38 // This define protects some debugging code (see DumpAutofillData). This
39 // is here to make it easier to delete this code when the test is complete, 39 // is here to make it easier to delete this code when the test is complete,
40 // and to prevent adding the code on mobile where there is no desktop (the 40 // and to prevent adding the code on mobile where there is no desktop (the
41 // debug dump file is written to the desktop) or command-line flags to enable. 41 // debug dump file is written to the desktop) or command-line flags to enable.
42 #if defined(OS_WIN) || defined(OS_MACOSX) || defined(OS_LINUX) 42 #if defined(OS_WIN) || defined(OS_MACOSX) || defined(OS_LINUX)
43 #define ENABLE_FORM_DEBUG_DUMP 43 #define ENABLE_FORM_DEBUG_DUMP
44 #endif 44 #endif
45 45
46 namespace gfx { 46 namespace gfx {
47 class Rect;
48 class RectF; 47 class RectF;
49 } 48 }
50 49
51 namespace user_prefs { 50 namespace user_prefs {
52 class PrefRegistrySyncable; 51 class PrefRegistrySyncable;
53 } 52 }
54 53
55 namespace autofill { 54 namespace autofill {
56 55
57 class AutofillDataModel; 56 class AutofillDataModel;
(...skipping 528 matching lines...) Expand 10 before | Expand all | Expand 10 after
586 FRIEND_TEST_ALL_PREFIXES(AutofillManagerTest, 585 FRIEND_TEST_ALL_PREFIXES(AutofillManagerTest,
587 OnLoadedServerPredictions_ResetManager); 586 OnLoadedServerPredictions_ResetManager);
588 FRIEND_TEST_ALL_PREFIXES(AutofillManagerTest, DontOfferToSavePaymentsCard); 587 FRIEND_TEST_ALL_PREFIXES(AutofillManagerTest, DontOfferToSavePaymentsCard);
589 FRIEND_TEST_ALL_PREFIXES(AutofillManagerTest, FillInUpdatedExpirationDate); 588 FRIEND_TEST_ALL_PREFIXES(AutofillManagerTest, FillInUpdatedExpirationDate);
590 DISALLOW_COPY_AND_ASSIGN(AutofillManager); 589 DISALLOW_COPY_AND_ASSIGN(AutofillManager);
591 }; 590 };
592 591
593 } // namespace autofill 592 } // namespace autofill
594 593
595 #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_MANAGER_H_ 594 #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_MANAGER_H_
OLDNEW
« no previous file with comments | « components/autofill/core/browser/autofill_data_model.h ('k') | components/autofill/core/browser/form_structure.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698