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

Unified Diff: chrome/browser/ui/cocoa/autofill/password_generation_popup_view_bridge.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/password_generation_popup_view_bridge.h
diff --git a/chrome/browser/ui/cocoa/autofill/password_generation_popup_view_bridge.h b/chrome/browser/ui/cocoa/autofill/password_generation_popup_view_bridge.h
new file mode 100644
index 0000000000000000000000000000000000000000..6e5f5f9b6bd4a41e0d95e93a9395c9eddf3a51a5
--- /dev/null
+++ b/chrome/browser/ui/cocoa/autofill/password_generation_popup_view_bridge.h
@@ -0,0 +1,46 @@
+// Copyright 2014 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_PASSWORD_GENERATION_POPUP_VIEW_BRIDGE_H_
+#define CHROME_BROWSER_UI_COCOA_AUTOFILL_PASSWORD_GENERATION_POPUP_VIEW_BRIDGE_H_
+
+#include <vector>
+
+#include "base/basictypes.h"
+#include "base/compiler_specific.h"
+#include "base/mac/scoped_nsobject.h"
+#include "chrome/browser/ui/autofill/password_generation_popup_view.h"
+
+@class PasswordGenerationPopupViewCocoa;
+
+namespace autofill {
+
+class AutofillPopupController;
+
+// Mac implementation for PasswordGenerationPopupView interface.
+// Serves as a bridge to an instance of the Objective-C class which actually
+// implements the view.
+class PasswordGenerationPopupViewBridge : public PasswordGenerationPopupView {
+ public:
+ explicit PasswordGenerationPopupViewBridge(
+ PasswordGenerationPopupController* controller);
+
+ private:
+ virtual ~PasswordGenerationPopupViewBridge();
+
+ // PasswordGenerationPopupView implementation.
+ virtual void Hide() OVERRIDE;
+ virtual void Show() OVERRIDE;
+ virtual void UpdateBoundsAndRedrawPopup() OVERRIDE;
+ virtual void PasswordSelectionUpdated() OVERRIDE;
+
+ // The native Cocoa view.
+ base::scoped_nsobject<PasswordGenerationPopupViewCocoa> view_;
+
+ DISALLOW_COPY_AND_ASSIGN(PasswordGenerationPopupViewBridge);
+};
+
+} // namespace autofill
+
+#endif // CHROME_BROWSER_UI_COCOA_AUTOFILL_PASSWORD_GENERATION_POPUP_VIEW_BRIDGE_H_

Powered by Google App Engine
This is Rietveld 408576698