OLD | NEW |
(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 #include <cstddef> // For NULL. |
| 6 |
| 7 #include "chrome/browser/ui/autofill/autofill_dialog_view.h" |
| 8 |
| 9 AutofillDialogView::~AutofillDialogView() {} |
| 10 |
| 11 #if !defined(TOOLKIT_VIEWS) |
| 12 // TODO(estade): implement the dialog on other platforms. See |
| 13 // http://crbug.com/157274 http://crbug.com/157275 http://crbug.com/157277 |
| 14 AutofillDialogView* AutofillDialogView::Create( |
| 15 AutofillDialogController* controller) { |
| 16 return NULL; |
| 17 } |
| 18 #endif |
OLD | NEW |