OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2013 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 "chrome/browser/ui/autofill/autofill_dialog_tab_manager_delegate.h" | |
6 | |
7 namespace autofill { | |
8 | |
9 AutofillDialogTabManagerDelegate::~AutofillDialogTabManagerDelegate() { | |
Evan Stade
2013/08/01 19:44:52
{} on same line
aruslan
2013/08/07 23:17:03
Done.
| |
10 } | |
11 | |
12 #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.
| |
13 // static | |
14 base::WeakPtr<AutofillDialogTabManagerDelegate> | |
15 AutofillDialogTabManagerDelegate::Create( | |
16 content::WebContents* contents, | |
17 const FormData& form_structure, | |
18 const GURL& source_url, | |
19 const DialogType dialog_type, | |
20 const base::Callback<void(const FormStructure*, | |
21 const std::string&)>& callback) { | |
22 NOTIMPLEMENTED(); | |
23 return base::WeakPtr<AutofillDialogTabManagerDelegate>(); | |
24 } | |
25 #endif // !defined(TOOLKIT_VIEWS) && !defined(OS_ANDROID) | |
26 | |
27 } // namespace autofill | |
OLD | NEW |