| OLD | NEW |
| 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_PASSWORD_MANAGER_ACCOUNT_CHOOSER_DIALOG_ANDROID_H_ | 5 #ifndef CHROME_BROWSER_PASSWORD_MANAGER_ACCOUNT_CHOOSER_DIALOG_ANDROID_H_ |
| 6 #define CHROME_BROWSER_PASSWORD_MANAGER_ACCOUNT_CHOOSER_DIALOG_ANDROID_H_ | 6 #define CHROME_BROWSER_PASSWORD_MANAGER_ACCOUNT_CHOOSER_DIALOG_ANDROID_H_ |
| 7 | 7 |
| 8 #include <stddef.h> |
| 9 |
| 8 #include <vector> | 10 #include <vector> |
| 9 | 11 |
| 10 #include "base/android/jni_android.h" | 12 #include "base/android/jni_android.h" |
| 13 #include "base/macros.h" |
| 11 #include "base/memory/scoped_vector.h" | 14 #include "base/memory/scoped_vector.h" |
| 12 #include "chrome/browser/ui/passwords/manage_passwords_state.h" | 15 #include "chrome/browser/ui/passwords/manage_passwords_state.h" |
| 13 | 16 |
| 14 namespace content { | 17 namespace content { |
| 15 class WebContents; | 18 class WebContents; |
| 16 } | 19 } |
| 17 | 20 |
| 18 namespace password_manager { | 21 namespace password_manager { |
| 19 struct CredentialInfo; | 22 struct CredentialInfo; |
| 20 } | 23 } |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 content::WebContents* web_contents_; | 64 content::WebContents* web_contents_; |
| 62 ManagePasswordsState passwords_data_; | 65 ManagePasswordsState passwords_data_; |
| 63 | 66 |
| 64 DISALLOW_COPY_AND_ASSIGN(AccountChooserDialogAndroid); | 67 DISALLOW_COPY_AND_ASSIGN(AccountChooserDialogAndroid); |
| 65 }; | 68 }; |
| 66 | 69 |
| 67 // Native JNI methods | 70 // Native JNI methods |
| 68 bool RegisterAccountChooserDialogAndroid(JNIEnv* env); | 71 bool RegisterAccountChooserDialogAndroid(JNIEnv* env); |
| 69 | 72 |
| 70 #endif // CHROME_BROWSER_PASSWORD_MANAGER_ACCOUNT_CHOOSER_DIALOG_ANDROID_H_ | 73 #endif // CHROME_BROWSER_PASSWORD_MANAGER_ACCOUNT_CHOOSER_DIALOG_ANDROID_H_ |
| OLD | NEW |