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

Side by Side Diff: chrome/browser/ui/android/infobars/auto_signin_first_run_infobar.h

Issue 1481553002: jni: Pass method parameters as JavaParamRef in chrome/browser/ui. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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_INFOBARS_AUTO_SIGNIN_FIRST_RUN_INFOBAR_H_ 5 #ifndef CHROME_BROWSER_UI_ANDROID_INFOBARS_AUTO_SIGNIN_FIRST_RUN_INFOBAR_H_
6 #define CHROME_BROWSER_UI_ANDROID_INFOBARS_AUTO_SIGNIN_FIRST_RUN_INFOBAR_H_ 6 #define CHROME_BROWSER_UI_ANDROID_INFOBARS_AUTO_SIGNIN_FIRST_RUN_INFOBAR_H_
7 7
8 #include "base/macros.h" 8 #include "base/macros.h"
9 #include "chrome/browser/password_manager/auto_signin_first_run_infobar_delegate .h" 9 #include "chrome/browser/password_manager/auto_signin_first_run_infobar_delegate .h"
10 #include "chrome/browser/ui/android/infobars/confirm_infobar.h" 10 #include "chrome/browser/ui/android/infobars/confirm_infobar.h"
11 11
12 // The Android infobar that offers the user the ability to save a password 12 // The Android infobar that offers the user the ability to save a password
13 // for the site. 13 // for the site.
14 class AutoSigninFirstRunInfoBar : public ConfirmInfoBar { 14 class AutoSigninFirstRunInfoBar : public ConfirmInfoBar {
15 public: 15 public:
16 explicit AutoSigninFirstRunInfoBar( 16 explicit AutoSigninFirstRunInfoBar(
17 scoped_ptr<AutoSigninFirstRunInfoBarDelegate> delegate); 17 scoped_ptr<AutoSigninFirstRunInfoBarDelegate> delegate);
18 18
19 ~AutoSigninFirstRunInfoBar() override; 19 ~AutoSigninFirstRunInfoBar() override;
20 20
21 static bool Register(JNIEnv* env); 21 static bool Register(JNIEnv* env);
22 22
23 private: 23 private:
24 // ConfirmInfoBar: 24 // ConfirmInfoBar:
25 base::android::ScopedJavaLocalRef<jobject> CreateRenderInfoBar( 25 base::android::ScopedJavaLocalRef<jobject> CreateRenderInfoBar(
26 JNIEnv* env) override; 26 JNIEnv* env) override;
27 void OnLinkClicked(JNIEnv* env, jobject obj) override; 27 void OnLinkClicked(JNIEnv* env,
28 const base::android::JavaParamRef<jobject>& obj) override;
28 29
29 DISALLOW_COPY_AND_ASSIGN(AutoSigninFirstRunInfoBar); 30 DISALLOW_COPY_AND_ASSIGN(AutoSigninFirstRunInfoBar);
30 }; 31 };
31 32
32 #endif // CHROME_BROWSER_UI_ANDROID_INFOBARS_AUTO_SIGNIN_FIRST_RUN_INFOBAR_H_ 33 #endif // CHROME_BROWSER_UI_ANDROID_INFOBARS_AUTO_SIGNIN_FIRST_RUN_INFOBAR_H_
OLDNEW
« no previous file with comments | « chrome/browser/ui/android/context_menu_helper.cc ('k') | chrome/browser/ui/android/infobars/auto_signin_first_run_infobar.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698