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

Unified Diff: chrome/browser/ui/autofill/autofill_dialog_view.cc

Issue 11231063: [views] "Hello, world" autofill imperative API dialog. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: another round of review Created 8 years, 2 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/autofill/autofill_dialog_view.cc
diff --git a/chrome/browser/ui/autofill/autofill_dialog_view.cc b/chrome/browser/ui/autofill/autofill_dialog_view.cc
new file mode 100644
index 0000000000000000000000000000000000000000..c8e28393e82c29eecd247b71992dc5ccfe53f965
--- /dev/null
+++ b/chrome/browser/ui/autofill/autofill_dialog_view.cc
@@ -0,0 +1,16 @@
+// 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.
+
+#include "chrome/browser/ui/autofill/autofill_dialog_view.h"
+
+AutofillDialogView::~AutofillDialogView() {}
+
+#if !defined(TOOLKIT_VIEWS)
+// TODO(estade): implement the dialog on other platforms. See
+// http://crbug.com/157274 http://crbug.com/157275 http://crbug.com/157277
+AutofillDialogView* AutofillDialogView::CreateDialog(
+ AutofillDialogController* controller) {
+ return NULL;
+}
+#endif

Powered by Google App Engine
This is Rietveld 408576698