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

Unified Diff: chrome/browser/ui/views/autofill/autofill_popup_view_views.h

Issue 10825324: Start of New Autofill UI for Windows (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 4 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/views/autofill/autofill_popup_view_views.h
diff --git a/chrome/browser/ui/views/autofill/autofill_popup_view_views.h b/chrome/browser/ui/views/autofill/autofill_popup_view_views.h
new file mode 100644
index 0000000000000000000000000000000000000000..18449bb4e89374c1ca62f9873167c22af8417f4b
--- /dev/null
+++ b/chrome/browser/ui/views/autofill/autofill_popup_view_views.h
@@ -0,0 +1,56 @@
+// 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_VIEWS_AUTOFILL_AUTOFILL_POPUP_VIEW_VIEWS_H_
+#define CHROME_BROWSER_UI_VIEWS_AUTOFILL_AUTOFILL_POPUP_VIEW_VIEWS_H_
+
+#include "chrome/browser/autofill/autofill_popup_view.h"
+#include "content/public/browser/keyboard_listener.h"
+#include "ui/views/view.h"
+
+class AutofillExternalDelegateViews;
+
+namespace content {
+class RenderViewHost;
+class WebContents;
+}
+
+namespace gfx {
+class Rect;
+}
+
+// The View Autofill popup implementation.
+class AutofillPopupViewViews : public views::View,
+ public AutofillPopupView,
+ public KeyboardListener {
+ public:
+ AutofillPopupViewViews(content::WebContents* web_contents,
+ AutofillExternalDelegateViews* external_delegate);
+ virtual ~AutofillPopupViewViews();
+
+ private:
+ class AutofillPopupWidget;
+
+ // views::View implementation.
+ virtual void OnPaint(gfx::Canvas* canvas) OVERRIDE;
+
+ // AutofillPopupView implementation.
+ virtual void ShowInternal() OVERRIDE;
+ virtual void HideInternal() OVERRIDE;
+ virtual void InvalidateRow(size_t row) OVERRIDE;
+ virtual void ResizePopup() OVERRIDE;
+
+ // The popup that contains this view. We create this, but it deletes itself
+ // when its window is destroyed. This is a WeakPtr because it's possible for
+ // the OS to destroy the window and thus delete this object before we're
+ // deleted, or without our knowledge.
+ base::WeakPtr<AutofillPopupWidget> popup_;
+
+ AutofillExternalDelegateViews* external_delegate_; // Weak reference.
+ content::WebContents* web_contents_; // Weak reference.
+
+ DISALLOW_COPY_AND_ASSIGN(AutofillPopupViewViews);
+};
+
+#endif // CHROME_BROWSER_UI_VIEWS_AUTOFILL_AUTOFILL_POPUP_VIEW_VIEWS_H_

Powered by Google App Engine
This is Rietveld 408576698