Index: chrome/browser/ui/cocoa/autofill/autofill_popup_view_cocoa.h |
diff --git a/chrome/browser/ui/cocoa/autofill/autofill_popup_view_cocoa.h b/chrome/browser/ui/cocoa/autofill/autofill_popup_view_cocoa.h |
index c51a6ed8d061e6ed1544759e3113ecbb4f427321..325d16dbc06f6c6aacf41f524f636ad645257b14 100644 |
--- a/chrome/browser/ui/cocoa/autofill/autofill_popup_view_cocoa.h |
+++ b/chrome/browser/ui/cocoa/autofill/autofill_popup_view_cocoa.h |
@@ -2,19 +2,19 @@ |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
-#ifndef CHROME_BROWSER_UI_COCOA_AUTOFILL_AUTOFILL_POPUP_CONTENT_VIEW_H_ |
-#define CHROME_BROWSER_UI_COCOA_AUTOFILL_AUTOFILL_POPUP_CONTENT_VIEW_H_ |
+#ifndef CHROME_BROWSER_UI_COCOA_AUTOFILL_AUTOFILL_POPUP_VIEW_COCOA_H_ |
+#define CHROME_BROWSER_UI_COCOA_AUTOFILL_AUTOFILL_POPUP_VIEW_COCOA_H_ |
#import <Cocoa/Cocoa.h> |
-#import "ui/base/cocoa/base_view.h" |
+#import "chrome/browser/ui/cocoa/autofill/autofill_popup_base_view_cocoa.h" |
namespace autofill { |
class AutofillPopupController; |
} // namespace autofill |
// Draws the native Autofill popup view on Mac. |
-@interface AutofillPopupViewCocoa : BaseView { |
+@interface AutofillPopupViewCocoa : AutofillPopupBaseViewCocoa { |
@private |
// The cross-platform controller for this view. |
__weak autofill::AutofillPopupController* controller_; |
@@ -24,10 +24,8 @@ class AutofillPopupController; |
- (id)initWithController:(autofill::AutofillPopupController*)controller |
frame:(NSRect)frame; |
-// Informs the view that its controller has been (or will imminently be) |
-// destroyed. |
-- (void)controllerDestroyed; |
+- (void)invalidateRow:(size_t)row; |
@end |
-#endif // CHROME_BROWSER_UI_COCOA_AUTOFILL_AUTOFILL_POPUP_CONTENT_VIEW_H_ |
+#endif // CHROME_BROWSER_UI_COCOA_AUTOFILL_AUTOFILL_POPUP_VIEW_COCOA_H_ |