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

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

Issue 11740033: [Autofill] Add Mac implementation for the in-browser process popup view. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 12 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_mac.h
diff --git a/chrome/browser/ui/cocoa/autofill/autofill_popup_view_mac.h b/chrome/browser/ui/cocoa/autofill/autofill_popup_view_mac.h
new file mode 100644
index 0000000000000000000000000000000000000000..4479e35b8bfe283e4500d3bf864978ec6b771369
--- /dev/null
+++ b/chrome/browser/ui/cocoa/autofill/autofill_popup_view_mac.h
@@ -0,0 +1,46 @@
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
+// 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_VIEW_MAC_H_
+#define CHROME_BROWSER_UI_COCOA_AUTOFILL_AUTOFILL_POPUP_VIEW_MAC_H_
+
+#include <vector>
+
+#include "base/basictypes.h"
+#include "base/memory/scoped_nsobject.h"
+#include "chrome/browser/ui/autofill/autofill_popup_view.h"
+
+class AutofillPopupController;
+@class AutofillPopupViewCocoa;
+@class NSWindow;
+
+// Mac implementation for AutofillPopupView interface.
+class AutofillPopupViewMac : public AutofillPopupView {
+ public:
+ explicit AutofillPopupViewMac(AutofillPopupController* controller);
+
+ private:
+ virtual ~AutofillPopupViewMac();
+
+ // AutofillPopupView implementation.
+ virtual void Hide() OVERRIDE;
+ virtual void Show() OVERRIDE;
+ virtual void InvalidateRow(size_t row) OVERRIDE;
+ virtual void UpdateBoundsAndRedrawPopup() OVERRIDE;
+
+ // Set the initial bounds of the popup to show, including the placement
+ // of it.
+ void SetInitialBounds();
+
+ // The controller for this view.
+ AutofillPopupController* controller_; // Weak reference.
+
+ // The native Cocoa window and view.
+ NSWindow* window_; // Weak reference, owns itself.
+ AutofillPopupViewCocoa* view_; // Weak reference, owned by the |window_|.
+
+ DISALLOW_COPY_AND_ASSIGN(AutofillPopupViewMac);
+};
+
+#endif // CHROME_BROWSER_UI_COCOA_AUTOFILL_AUTOFILL_POPUP_VIEW_MAC_H_

Powered by Google App Engine
This is Rietveld 408576698