Chromium Code Reviews| Index: chrome/browser/ui/autofill/autofill_dialog_tab_manager_delegate.cc |
| diff --git a/chrome/browser/ui/autofill/autofill_dialog_tab_manager_delegate.cc b/chrome/browser/ui/autofill/autofill_dialog_tab_manager_delegate.cc |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..60c5d20e83125028570c23ec22aa938ce49c76a3 |
| --- /dev/null |
| +++ b/chrome/browser/ui/autofill/autofill_dialog_tab_manager_delegate.cc |
| @@ -0,0 +1,27 @@ |
| +// Copyright 2013 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_tab_manager_delegate.h" |
| + |
| +namespace autofill { |
| + |
| +AutofillDialogTabManagerDelegate::~AutofillDialogTabManagerDelegate() { |
|
Evan Stade
2013/08/01 19:44:52
{} on same line
aruslan
2013/08/07 23:17:03
Done.
|
| +} |
| + |
| +#if !defined(TOOLKIT_VIEWS) && !defined(OS_ANDROID) |
|
aruslan
2013/07/31 02:43:19
This should be #if !defined(ENABLE_AUTOFILL_DIALOG
aruslan
2013/08/07 23:17:03
Done.
|
| +// static |
| +base::WeakPtr<AutofillDialogTabManagerDelegate> |
| +AutofillDialogTabManagerDelegate::Create( |
| + content::WebContents* contents, |
| + const FormData& form_structure, |
| + const GURL& source_url, |
| + const DialogType dialog_type, |
| + const base::Callback<void(const FormStructure*, |
| + const std::string&)>& callback) { |
| + NOTIMPLEMENTED(); |
| + return base::WeakPtr<AutofillDialogTabManagerDelegate>(); |
| +} |
| +#endif // !defined(TOOLKIT_VIEWS) && !defined(OS_ANDROID) |
| + |
| +} // namespace autofill |