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

Side by Side Diff: chrome/browser/ui/autofill/autofill_dialog_view.h

Issue 11231063: [views] "Hello, world" autofill imperative API dialog. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 8 years, 1 month 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_DIALOG_VIEW_H_
6 #define CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_DIALOG_VIEW_H_
7
8 class AutofillDialogController;
9
10 // An interface for the dialog that appears when a site initiates an Autofill
11 // action via the imperative autocomplete API.
12 class AutofillDialogView {
13 public:
14 virtual ~AutofillDialogView();
15
16 // Shows the dialog.
17 virtual void Show() = 0;
18
19 // Factory function to create the dialog (implemented once per view
20 // implementation). |controller| will own the created dialog.
21 static AutofillDialogView* CreateDialog(AutofillDialogController* controller);
sky 2012/10/23 23:13:12 I think this conflicts with a win32 function. Mayb
Evan Stade 2012/10/23 23:16:24 seems so. Will do.
22 };
23
24 #endif // CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_DIALOG_VIEW_H_
OLDNEW
« no previous file with comments | « chrome/browser/ui/autofill/autofill_dialog_controller.cc ('k') | chrome/browser/ui/autofill/autofill_dialog_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698