| OLD | NEW | 
|    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 CHROME_BROWSER_AUTOFILL_AUTOFILL_MANAGER_H_ | 
|    6 #define CHROME_BROWSER_AUTOFILL_AUTOFILL_MANAGER_H_ |    6 #define CHROME_BROWSER_AUTOFILL_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/compiler_specific.h" |   14 #include "base/compiler_specific.h" | 
|   15 #include "base/gtest_prod_util.h" |   15 #include "base/gtest_prod_util.h" | 
|   16 #include "base/memory/ref_counted.h" |   16 #include "base/memory/ref_counted.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/string16.h" |   20 #include "base/string16.h" | 
|   21 #include "base/time.h" |   21 #include "base/time.h" | 
 |   22 #include "chrome/browser/api/prefs/pref_change_registrar.h" | 
|   22 #include "chrome/browser/autofill/autofill_download.h" |   23 #include "chrome/browser/autofill/autofill_download.h" | 
|   23 #include "chrome/browser/autofill/field_types.h" |   24 #include "chrome/browser/autofill/field_types.h" | 
|   24 #include "chrome/browser/autofill/form_structure.h" |   25 #include "chrome/browser/autofill/form_structure.h" | 
|   25 #include "chrome/browser/prefs/pref_change_registrar.h" |  | 
|   26 #include "chrome/browser/sync/profile_sync_service_observer.h" |   26 #include "chrome/browser/sync/profile_sync_service_observer.h" | 
|   27 #include "content/public/browser/notification_observer.h" |   27 #include "content/public/browser/notification_observer.h" | 
|   28 #include "content/public/browser/notification_registrar.h" |   28 #include "content/public/browser/notification_registrar.h" | 
|   29 #include "content/public/browser/web_contents_observer.h" |   29 #include "content/public/browser/web_contents_observer.h" | 
|   30  |   30  | 
|   31 class AutofillExternalDelegate; |   31 class AutofillExternalDelegate; | 
|   32 class AutofillField; |   32 class AutofillField; | 
|   33 class AutofillProfile; |   33 class AutofillProfile; | 
|   34 class AutofillMetrics; |   34 class AutofillMetrics; | 
|   35 class CreditCard; |   35 class CreditCard; | 
| (...skipping 367 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  403                            TestTabContentsWithExternalDelegate); |  403                            TestTabContentsWithExternalDelegate); | 
|  404   FRIEND_TEST_ALL_PREFIXES(AutofillMetricsTest, |  404   FRIEND_TEST_ALL_PREFIXES(AutofillMetricsTest, | 
|  405                            UserHappinessFormLoadAndSubmission); |  405                            UserHappinessFormLoadAndSubmission); | 
|  406   FRIEND_TEST_ALL_PREFIXES(AutofillMetricsTest, UserHappinessFormInteraction); |  406   FRIEND_TEST_ALL_PREFIXES(AutofillMetricsTest, UserHappinessFormInteraction); | 
|  407   FRIEND_TEST_ALL_PREFIXES(AutofillMetricsTest, FormFillDuration); |  407   FRIEND_TEST_ALL_PREFIXES(AutofillMetricsTest, FormFillDuration); | 
|  408  |  408  | 
|  409   DISALLOW_COPY_AND_ASSIGN(AutofillManager); |  409   DISALLOW_COPY_AND_ASSIGN(AutofillManager); | 
|  410 }; |  410 }; | 
|  411  |  411  | 
|  412 #endif  // CHROME_BROWSER_AUTOFILL_AUTOFILL_MANAGER_H_ |  412 #endif  // CHROME_BROWSER_AUTOFILL_AUTOFILL_MANAGER_H_ | 
| OLD | NEW |