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

Unified Diff: chrome/browser/ui/cocoa/autofill/autofill_popup_view_bridge.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: Rename _mac to _bridge, added TODOs for cleanup per Nico's comments. Created 7 years, 11 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_bridge.h
diff --git a/chrome/browser/ui/cocoa/autofill/autofill_popup_view_bridge.h b/chrome/browser/ui/cocoa/autofill/autofill_popup_view_bridge.h
new file mode 100644
index 0000000000000000000000000000000000000000..5a604626afec33530920a54159f471d8bd730324
--- /dev/null
+++ b/chrome/browser/ui/cocoa/autofill/autofill_popup_view_bridge.h
@@ -0,0 +1,48 @@
+// 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_BRIDGE_H_
+#define CHROME_BROWSER_UI_COCOA_AUTOFILL_AUTOFILL_POPUP_VIEW_BRIDGE_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.
+// Serves as a bridge to the Objective-C class AutofillPopupViewCocoa which
+// actually implements the view.
+class AutofillPopupViewBridge : public AutofillPopupView {
+ public:
+ explicit AutofillPopupViewBridge(AutofillPopupController* controller);
+
+ private:
+ virtual ~AutofillPopupViewBridge();
+
+ // 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(AutofillPopupViewBridge);
+};
+
+#endif // CHROME_BROWSER_UI_COCOA_AUTOFILL_AUTOFILL_POPUP_VIEW_BRIDGE_H_
« no previous file with comments | « chrome/browser/ui/autofill/autofill_popup_view.cc ('k') | chrome/browser/ui/cocoa/autofill/autofill_popup_view_bridge.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698