| 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 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <list> | 9 #include <list> |
| 10 #include <map> | 10 #include <map> |
| (...skipping 18 matching lines...) Expand all Loading... |
| 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; |
| 36 class PersonalDataManager; | 36 class PersonalDataManager; |
| 37 class PrefService; | 37 class PrefService; |
| 38 class ProfileSyncService; | 38 class ProfileSyncService; |
| 39 class TabContentsWrapper; | 39 class TabContents; |
| 40 typedef TabContents TabContentsWrapper; |
| 40 | 41 |
| 41 struct ViewHostMsg_FrameNavigate_Params; | 42 struct ViewHostMsg_FrameNavigate_Params; |
| 42 | 43 |
| 43 namespace content { | 44 namespace content { |
| 44 class RenderViewHost; | 45 class RenderViewHost; |
| 45 } | 46 } |
| 46 | 47 |
| 47 namespace gfx { | 48 namespace gfx { |
| 48 class Rect; | 49 class Rect; |
| 49 } | 50 } |
| (...skipping 341 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 391 TestTabContentsWithExternalDelegate); | 392 TestTabContentsWithExternalDelegate); |
| 392 FRIEND_TEST_ALL_PREFIXES(AutofillMetricsTest, | 393 FRIEND_TEST_ALL_PREFIXES(AutofillMetricsTest, |
| 393 UserHappinessFormLoadAndSubmission); | 394 UserHappinessFormLoadAndSubmission); |
| 394 FRIEND_TEST_ALL_PREFIXES(AutofillMetricsTest, UserHappinessFormInteraction); | 395 FRIEND_TEST_ALL_PREFIXES(AutofillMetricsTest, UserHappinessFormInteraction); |
| 395 FRIEND_TEST_ALL_PREFIXES(AutofillMetricsTest, FormFillDuration); | 396 FRIEND_TEST_ALL_PREFIXES(AutofillMetricsTest, FormFillDuration); |
| 396 | 397 |
| 397 DISALLOW_COPY_AND_ASSIGN(AutofillManager); | 398 DISALLOW_COPY_AND_ASSIGN(AutofillManager); |
| 398 }; | 399 }; |
| 399 | 400 |
| 400 #endif // CHROME_BROWSER_AUTOFILL_AUTOFILL_MANAGER_H_ | 401 #endif // CHROME_BROWSER_AUTOFILL_AUTOFILL_MANAGER_H_ |
| OLD | NEW |