| 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..aeef275c37ece42a9644efa5dd8d40596ae1f1b2
|
| --- /dev/null
|
| +++ b/chrome/browser/ui/autofill/autofill_dialog_view.cc
|
| @@ -0,0 +1,18 @@
|
| +// 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 <cstddef> // For NULL.
|
| +
|
| +#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::Create(
|
| + AutofillDialogController* controller) {
|
| + return NULL;
|
| +}
|
| +#endif
|
|
|