Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(530)

Side by Side Diff: chrome/browser/ui/autofill/autofill_dialog_controller.cc

Issue 1931043002: Remove requestAutocomplete (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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 base::Callback<void(const FormStructure*)>& callback) {
19 NOTIMPLEMENTED();
20 return base::WeakPtr<AutofillDialogController>();
21 }
22
23 // static
24 void AutofillDialogController::RegisterPrefs(PrefRegistrySimple* registry) {}
25
26 // static
27 void AutofillDialogController::RegisterProfilePrefs(
28 user_prefs::PrefRegistrySyncable* registry) {}
29 #endif // !defined(ENABLE_AUTOFILL_DIALOG)
30
31 } // namespace autofill
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698