diff options
| author | Adam Lesinski <adamlesinski@google.com> | 2015-05-04 23:54:14 +0000 |
|---|---|---|
| committer | Android (Google) Code Review <android-gerrit@google.com> | 2015-05-04 23:54:15 +0000 |
| commit | 2f519532eecd881b034a4e31f57336724604cb56 (patch) | |
| tree | 48c0ff9505b0680fbf5b565b5e5c489c0b15ffb4 /tools/aapt2/BinaryResourceParser.h | |
| parent | f31a7003643988c7e2682a4f9256a28b04877035 (diff) | |
| parent | 24aad163bc88cb10d2275385e9afc3de7f342d65 (diff) | |
| download | frameworks_base-2f519532eecd881b034a4e31f57336724604cb56.zip frameworks_base-2f519532eecd881b034a4e31f57336724604cb56.tar.gz frameworks_base-2f519532eecd881b034a4e31f57336724604cb56.tar.bz2 | |
Merge "Add namespace handling in attribute values" into mnc-dev
Diffstat (limited to 'tools/aapt2/BinaryResourceParser.h')
| -rw-r--r-- | tools/aapt2/BinaryResourceParser.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/aapt2/BinaryResourceParser.h b/tools/aapt2/BinaryResourceParser.h index f95a0c8..2ac02c9 100644 --- a/tools/aapt2/BinaryResourceParser.h +++ b/tools/aapt2/BinaryResourceParser.h @@ -43,7 +43,7 @@ public: * add any resources parsed to `table`. `source` is for logging purposes. */ BinaryResourceParser(const std::shared_ptr<ResourceTable>& table, - const std::shared_ptr<Resolver>& resolver, + const std::shared_ptr<IResolver>& resolver, const Source& source, const void* data, size_t len); @@ -92,7 +92,7 @@ private: std::shared_ptr<ResourceTable> mTable; - std::shared_ptr<Resolver> mResolver; + std::shared_ptr<IResolver> mResolver; const Source mSource; |
