| OLD | NEW |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | 1 // Copyright 2017 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 COMPONENTS_PAYMENTS_CONTENT_ANDROID_PAYMENT_MANIFEST_PARSER_ANDROID_H_ | 5 #ifndef CHROME_BROWSER_PAYMENTS_ANDROID_PAYMENT_MANIFEST_PARSER_ANDROID_H_ |
| 6 #define COMPONENTS_PAYMENTS_CONTENT_ANDROID_PAYMENT_MANIFEST_PARSER_ANDROID_H_ | 6 #define CHROME_BROWSER_PAYMENTS_ANDROID_PAYMENT_MANIFEST_PARSER_ANDROID_H_ |
| 7 | 7 |
| 8 #include <jni.h> | 8 #include <jni.h> |
| 9 | 9 |
| 10 #include <memory> | 10 #include <memory> |
| 11 #include <vector> | 11 #include <vector> |
| 12 | 12 |
| 13 #include "base/android/jni_android.h" | 13 #include "base/android/jni_android.h" |
| 14 #include "base/android/scoped_java_ref.h" | 14 #include "base/android/scoped_java_ref.h" |
| 15 #include "base/macros.h" | 15 #include "base/macros.h" |
| 16 #include "components/payments/content/payment_manifest_parser_host.h" | 16 #include "components/payments/content/payment_manifest_parser_host.h" |
| (...skipping 29 matching lines...) Expand all Loading... |
| 46 private: | 46 private: |
| 47 PaymentManifestParserHost host_; | 47 PaymentManifestParserHost host_; |
| 48 | 48 |
| 49 DISALLOW_COPY_AND_ASSIGN(PaymentManifestParserAndroid); | 49 DISALLOW_COPY_AND_ASSIGN(PaymentManifestParserAndroid); |
| 50 }; | 50 }; |
| 51 | 51 |
| 52 bool RegisterPaymentManifestParser(JNIEnv* env); | 52 bool RegisterPaymentManifestParser(JNIEnv* env); |
| 53 | 53 |
| 54 } // namespace payments | 54 } // namespace payments |
| 55 | 55 |
| 56 #endif // COMPONENTS_PAYMENTS_CONTENT_ANDROID_PAYMENT_MANIFEST_PARSER_ANDROID_H
_ | 56 #endif // CHROME_BROWSER_PAYMENTS_ANDROID_PAYMENT_MANIFEST_PARSER_ANDROID_H_ |
| OLD | NEW |