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

Side by Side Diff: chrome/browser/autofill/android/personal_data_manager_android.h

Issue 2713033004: Layered component for web payments (Closed)
Patch Set: Rebase Created 3 years, 9 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 2013 The Chromium Authors. All rights reserved. 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 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_AUTOFILL_ANDROID_PERSONAL_DATA_MANAGER_ANDROID_H_ 5 #ifndef CHROME_BROWSER_AUTOFILL_ANDROID_PERSONAL_DATA_MANAGER_ANDROID_H_
6 #define CHROME_BROWSER_AUTOFILL_ANDROID_PERSONAL_DATA_MANAGER_ANDROID_H_ 6 #define CHROME_BROWSER_AUTOFILL_ANDROID_PERSONAL_DATA_MANAGER_ANDROID_H_
7 7
8 #include "base/android/jni_weak_ref.h" 8 #include "base/android/jni_weak_ref.h"
9 #include "base/android/scoped_java_ref.h" 9 #include "base/android/scoped_java_ref.h"
10 #include "base/macros.h" 10 #include "base/macros.h"
11 #include "base/memory/weak_ptr.h" 11 #include "base/memory/weak_ptr.h"
12 #include "components/autofill/core/browser/personal_data_manager.h" 12 #include "components/autofill/core/browser/personal_data_manager.h"
13 #include "components/autofill/core/browser/personal_data_manager_observer.h" 13 #include "components/autofill/core/browser/personal_data_manager_observer.h"
14 #include "components/payments/address_normalizer.h" 14 #include "components/payments/core/address_normalizer.h"
15 15
16 namespace autofill { 16 namespace autofill {
17 17
18 // Android wrapper of the PersonalDataManager which provides access from the 18 // Android wrapper of the PersonalDataManager which provides access from the
19 // Java layer. Note that on Android, there's only a single profile, and 19 // Java layer. Note that on Android, there's only a single profile, and
20 // therefore a single instance of this wrapper. 20 // therefore a single instance of this wrapper.
21 class PersonalDataManagerAndroid : public PersonalDataManagerObserver { 21 class PersonalDataManagerAndroid : public PersonalDataManagerObserver {
22 public: 22 public:
23 PersonalDataManagerAndroid(JNIEnv* env, jobject obj); 23 PersonalDataManagerAndroid(JNIEnv* env, jobject obj);
24 24
(...skipping 336 matching lines...) Expand 10 before | Expand all | Expand 10 after
361 361
362 // The address validator used to normalize addresses. 362 // The address validator used to normalize addresses.
363 payments::AddressNormalizer address_normalizer_; 363 payments::AddressNormalizer address_normalizer_;
364 364
365 DISALLOW_COPY_AND_ASSIGN(PersonalDataManagerAndroid); 365 DISALLOW_COPY_AND_ASSIGN(PersonalDataManagerAndroid);
366 }; 366 };
367 367
368 } // namespace autofill 368 } // namespace autofill
369 369
370 #endif // CHROME_BROWSER_AUTOFILL_ANDROID_PERSONAL_DATA_MANAGER_ANDROID_H_ 370 #endif // CHROME_BROWSER_AUTOFILL_ANDROID_PERSONAL_DATA_MANAGER_ANDROID_H_
OLDNEW
« no previous file with comments | « chrome/browser/android/payments/service_worker_payment_app_bridge.cc ('k') | chrome/browser/chrome_content_browser_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698