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_controller.h" | |
6 | |
7 namespace autofill { | |
8 | |
9 AutofillDialogController::~AutofillDialogController() {} | |
10 | |
11 #if !defined(ENABLE_AUTOFILL_DIALOG) | |
12 // static | |
13 base::WeakPtr<AutofillDialogController> | |
14 AutofillDialogController::Create( | |
15 content::WebContents* contents, | |
16 const FormData& form_structure, | |
17 const GURL& source_url, | |
18 const DialogType dialog_type, | |
19 const base::Callback<void(const FormStructure*, | |
20 const std::string&)>& callback) { | |
21 NOTIMPLEMENTED(); | |
22 return base::WeakPtr<AutofillDialogController>(); | |
23 } | |
24 | |
25 // static | |
26 void AutofillDialogController::RegisterProfilePrefs( | |
27 user_prefs::PrefRegistrySyncable* registry) { | |
Evan Stade
2013/08/08 23:03:44
nit: {} on same line
aruslan
2013/08/09 00:01:31
Done.
| |
28 } | |
29 #endif // !defined(ENABLE_AUTOFILL_DIALOG) | |
30 | |
31 } // namespace autofill | |
OLD | NEW |