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_UI_AUTOFILL_TAB_AUTOFILL_MANAGER_DELEGATE_H_ | 5 #ifndef CHROME_BROWSER_UI_AUTOFILL_TAB_AUTOFILL_MANAGER_DELEGATE_H_ |
6 #define CHROME_BROWSER_UI_AUTOFILL_TAB_AUTOFILL_MANAGER_DELEGATE_H_ | 6 #define CHROME_BROWSER_UI_AUTOFILL_TAB_AUTOFILL_MANAGER_DELEGATE_H_ |
7 | 7 |
8 #include "base/callback.h" | 8 #include "base/callback.h" |
9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
10 #include "base/memory/weak_ptr.h" | 10 #include "base/memory/weak_ptr.h" |
11 #include "chrome/browser/api/sync/profile_sync_service_observer.h" | 11 #include "chrome/browser/api/sync/profile_sync_service_observer.h" |
12 #include "chrome/browser/autofill/autofill_manager_delegate.h" | |
13 #include "chrome/browser/ui/autofill/autofill_dialog_types.h" | 12 #include "chrome/browser/ui/autofill/autofill_dialog_types.h" |
| 13 #include "components/autofill/browser/autofill_manager_delegate.h" |
14 #include "content/public/browser/web_contents_observer.h" | 14 #include "content/public/browser/web_contents_observer.h" |
15 #include "content/public/browser/web_contents_user_data.h" | 15 #include "content/public/browser/web_contents_user_data.h" |
16 | 16 |
17 class AutofillPopupControllerImpl; | 17 class AutofillPopupControllerImpl; |
18 | 18 |
19 namespace content { | 19 namespace content { |
20 struct FrameNavigateParams; | 20 struct FrameNavigateParams; |
21 struct LoadCommittedDetails; | 21 struct LoadCommittedDetails; |
22 class WebContents; | 22 class WebContents; |
23 } | 23 } |
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
90 content::WebContents* const web_contents_; | 90 content::WebContents* const web_contents_; |
91 AutofillDialogControllerImpl* dialog_controller_; // weak. | 91 AutofillDialogControllerImpl* dialog_controller_; // weak. |
92 base::WeakPtr<AutofillPopupControllerImpl> popup_controller_; | 92 base::WeakPtr<AutofillPopupControllerImpl> popup_controller_; |
93 | 93 |
94 DISALLOW_COPY_AND_ASSIGN(TabAutofillManagerDelegate); | 94 DISALLOW_COPY_AND_ASSIGN(TabAutofillManagerDelegate); |
95 }; | 95 }; |
96 | 96 |
97 } // namespace autofill | 97 } // namespace autofill |
98 | 98 |
99 #endif // CHROME_BROWSER_UI_AUTOFILL_TAB_AUTOFILL_MANAGER_DELEGATE_H_ | 99 #endif // CHROME_BROWSER_UI_AUTOFILL_TAB_AUTOFILL_MANAGER_DELEGATE_H_ |
OLD | NEW |