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

Side by Side Diff: chrome/browser/password_manager/account_chooser_dialog_android.h

Issue 1548133002: Switch to standard integer types in chrome/browser/, part 3 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 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
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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698