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 |