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

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

Issue 21124012: [WIP] Split AutofillDialogControllerImpl + integrate rAc on Android. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 4 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 | Annotate | Revision Log
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_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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698