diff options
author | 2014-11-05 19:31:22 +0000 | |
---|---|---|
committer | 2014-11-05 19:31:22 +0000 | |
commit | fb96e54ba8d43a9f3162c92760e53ab61c7486ff (patch) | |
tree | 6bdef8acddc2e1f7c97826ad07e0d99ee4fee898 /tools/aapt/ResourceTable.h | |
parent | a72b2228c278363c2ff5bd38f9a8b36e3c4cd70c (diff) | |
parent | 69ecfa903492b502b7b1636345e050b57313c251 (diff) |
Merge "Add error checking to aapt for split generation" into lmp-mr1-dev
automerge: 69ecfa9
* commit '69ecfa903492b502b7b1636345e050b57313c251':
Add error checking to aapt for split generation
Diffstat (limited to 'tools/aapt/ResourceTable.h')
-rw-r--r-- | tools/aapt/ResourceTable.h | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/tools/aapt/ResourceTable.h b/tools/aapt/ResourceTable.h index eac5dd3f919f..db392c891bfc 100644 --- a/tools/aapt/ResourceTable.h +++ b/tools/aapt/ResourceTable.h @@ -7,15 +7,16 @@ #ifndef RESOURCE_TABLE_H #define RESOURCE_TABLE_H -#include "ConfigDescription.h" -#include "StringPool.h" -#include "SourcePos.h" -#include "ResourceFilter.h" - #include <map> #include <queue> #include <set> +#include "ConfigDescription.h" +#include "ResourceFilter.h" +#include "SourcePos.h" +#include "StringPool.h" +#include "Symbol.h" + using namespace std; class XMLNode; @@ -543,6 +544,8 @@ public: DefaultKeyedVector<String16, uint32_t> mKeyStringsMapping; }; + void getDensityVaryingResources(KeyedVector<Symbol, Vector<SymbolDefinition> >& resources); + private: void writePublicDefinitions(const String16& package, FILE* fp, bool pub); sp<Package> getPackage(const String16& package); |