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

Side by Side Diff: chrome/browser/ui/android/autofill/autofill_dialog_view_android.h

Issue 13625002: Change the behavior of the [X] Save details to Wallet checkbox notification to: (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 7 years, 8 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
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_UI_ANDROID_AUTOFILL_AUTOFILL_DIALOG_VIEW_ANDROID_H_ 5 #ifndef CHROME_BROWSER_UI_ANDROID_AUTOFILL_AUTOFILL_DIALOG_VIEW_ANDROID_H_
6 #define CHROME_BROWSER_UI_ANDROID_AUTOFILL_AUTOFILL_DIALOG_VIEW_ANDROID_H_ 6 #define CHROME_BROWSER_UI_ANDROID_AUTOFILL_AUTOFILL_DIALOG_VIEW_ANDROID_H_
7 7
8 #include <jni.h> 8 #include <jni.h>
9 9
10 #include "base/android/scoped_java_ref.h" 10 #include "base/android/scoped_java_ref.h"
(...skipping 13 matching lines...) Expand all
24 virtual void Show() OVERRIDE; 24 virtual void Show() OVERRIDE;
25 virtual void Hide() OVERRIDE; 25 virtual void Hide() OVERRIDE;
26 virtual void UpdateNotificationArea() OVERRIDE; 26 virtual void UpdateNotificationArea() OVERRIDE;
27 virtual void UpdateAccountChooser() OVERRIDE; 27 virtual void UpdateAccountChooser() OVERRIDE;
28 virtual void UpdateButtonStrip() OVERRIDE; 28 virtual void UpdateButtonStrip() OVERRIDE;
29 virtual void UpdateSection(DialogSection section) OVERRIDE; 29 virtual void UpdateSection(DialogSection section) OVERRIDE;
30 virtual void GetUserInput(DialogSection section, 30 virtual void GetUserInput(DialogSection section,
31 DetailOutputMap* output) OVERRIDE; 31 DetailOutputMap* output) OVERRIDE;
32 virtual string16 GetCvc() OVERRIDE; 32 virtual string16 GetCvc() OVERRIDE;
33 virtual bool UseBillingForShipping() OVERRIDE; 33 virtual bool UseBillingForShipping() OVERRIDE;
34 virtual bool SaveDetailsInWallet() OVERRIDE;
35 virtual bool SaveDetailsLocally() OVERRIDE; 34 virtual bool SaveDetailsLocally() OVERRIDE;
36 virtual const content::NavigationController* ShowSignIn() OVERRIDE; 35 virtual const content::NavigationController* ShowSignIn() OVERRIDE;
37 virtual void HideSignIn() OVERRIDE; 36 virtual void HideSignIn() OVERRIDE;
38 virtual void UpdateProgressBar(double value) OVERRIDE; 37 virtual void UpdateProgressBar(double value) OVERRIDE;
39 virtual void ModelChanged() OVERRIDE; 38 virtual void ModelChanged() OVERRIDE;
40 virtual void SubmitForTesting() OVERRIDE; 39 virtual void SubmitForTesting() OVERRIDE;
41 virtual void CancelForTesting() OVERRIDE; 40 virtual void CancelForTesting() OVERRIDE;
42 41
43 // Java to C++ calls 42 // Java to C++ calls
44 void ItemSelected(JNIEnv* env, jobject obj, jint section, jint index); 43 void ItemSelected(JNIEnv* env, jobject obj, jint section, jint index);
(...skipping 24 matching lines...) Expand all
69 68
70 // The corresponding java object. 69 // The corresponding java object.
71 base::android::ScopedJavaGlobalRef<jobject> java_object_; 70 base::android::ScopedJavaGlobalRef<jobject> java_object_;
72 71
73 DISALLOW_COPY_AND_ASSIGN(AutofillDialogViewAndroid); 72 DISALLOW_COPY_AND_ASSIGN(AutofillDialogViewAndroid);
74 }; 73 };
75 74
76 } // namespace autofill 75 } // namespace autofill
77 76
78 #endif // CHROME_BROWSER_UI_ANDROID_AUTOFILL_AUTOFILL_DIALOG_VIEW_ANDROID_H_ 77 #endif // CHROME_BROWSER_UI_ANDROID_AUTOFILL_AUTOFILL_DIALOG_VIEW_ANDROID_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698