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

Unified Diff: chrome/browser/ui/cocoa/autofill/autofill_popup_view_cocoa.h

Issue 267183002: Password manager: Implement password generation UI for Mac. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase. Created 6 years, 7 months 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 side-by-side diff with in-line comments
Download patch
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..b140d054712f30bb79aaa1c52d17ce612e030ab5 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_;
@@ -28,6 +28,8 @@ class AutofillPopupController;
// 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_

Powered by Google App Engine
This is Rietveld 408576698