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

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

Issue 10825324: Start of New Autofill UI for Windows (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebasing Created 8 years, 3 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_external_delegate_views.h
diff --git a/chrome/browser/ui/views/autofill/autofill_external_delegate_views.h b/chrome/browser/ui/views/autofill/autofill_external_delegate_views.h
new file mode 100644
index 0000000000000000000000000000000000000000..baa8431a896f7a868e12c60768f38c567ebfa9f0
--- /dev/null
+++ b/chrome/browser/ui/views/autofill/autofill_external_delegate_views.h
@@ -0,0 +1,59 @@
+// 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_EXTERNAL_DELEGATE_VIEWS_H_
+#define CHROME_BROWSER_UI_VIEWS_AUTOFILL_AUTOFILL_EXTERNAL_DELEGATE_VIEWS_H_
+
+#include "base/basictypes.h"
+#include "base/compiler_specific.h"
+#include "chrome/browser/autofill/autofill_external_delegate.h"
+
+class AutofillPopupViewViews;
+
+// The View specific implementations of the AutofillExternalDelegate,
+// handling the communication between the Autofill and Autocomplete
+// selection and the popup that shows the values.
+class AutofillExternalDelegateViews : public AutofillExternalDelegate {
+ public:
+ AutofillExternalDelegateViews(TabContents* tab_contents,
+ AutofillManager* autofill_manager);
+
+ virtual ~AutofillExternalDelegateViews();
+
+ // Used by the popup view to indicate it has been destroyed.
+ void InvalidateView();
+
+ protected:
+ AutofillPopupViewViews* popup_view() { return popup_view_; }
+
+ // AutofillExternalDelegate implementation.
+ // Make protected to allow tests to override.
+ virtual void HideAutofillPopupInternal() OVERRIDE;
+
+ private:
+ // AutofillExternalDelegate implementation.
+ virtual void OnQueryPlatformSpecific(
+ int query_id,
+ const webkit::forms::FormData& form,
+ const webkit::forms::FormField& field,
+ const gfx::Rect& bounds) OVERRIDE;
+ virtual void ApplyAutofillSuggestions(
+ const std::vector<string16>& autofill_values,
+ const std::vector<string16>& autofill_labels,
+ const std::vector<string16>& autofill_icons,
+ const std::vector<int>& autofill_unique_ids) OVERRIDE;
+ virtual void SetBounds(const gfx::Rect& bounds) OVERRIDE;
+
+ // Create a valid view to display the autofill results if one doesn't
+ // currently exist.
+ void CreateViewIfNeeded();
+
+ // We use a raw pointer here because even though we usually create the view,
+ // its widget handles deleting it.
+ AutofillPopupViewViews* popup_view_;
+
+ DISALLOW_COPY_AND_ASSIGN(AutofillExternalDelegateViews);
+};
+
+#endif // CHROME_BROWSER_UI_VIEWS_AUTOFILL_AUTOFILL_EXTERNAL_DELEGATE_VIEWS_H_

Powered by Google App Engine
This is Rietveld 408576698