diff options
author | Adam Lesinski <adamlesinski@google.com> | 2014-08-29 21:38:01 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2014-08-29 21:38:02 +0000 |
commit | 9d75e95f9b1155fb8a8b4bf914c58cc011481fd1 (patch) | |
tree | 55eb6637ba22457f6b8b155e12850669c07f217c /libs/androidfw/tests/data/system/R.h | |
parent | cbf4c08796ee76a513b6bc30e8756f78d936cdc6 (diff) | |
parent | 9d9cc6233c7035c32d3b8622aa5dc7d413193dc7 (diff) | |
download | frameworks_base-9d75e95f9b1155fb8a8b4bf914c58cc011481fd1.zip frameworks_base-9d75e95f9b1155fb8a8b4bf914c58cc011481fd1.tar.gz frameworks_base-9d75e95f9b1155fb8a8b4bf914c58cc011481fd1.tar.bz2 |
Merge "Add test to ensure themes get copied from separate resource tables" into lmp-dev
Diffstat (limited to 'libs/androidfw/tests/data/system/R.h')
-rw-r--r-- | libs/androidfw/tests/data/system/R.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/libs/androidfw/tests/data/system/R.h b/libs/androidfw/tests/data/system/R.h new file mode 100644 index 0000000..7a9d3db --- /dev/null +++ b/libs/androidfw/tests/data/system/R.h @@ -0,0 +1,23 @@ +#ifndef __ANDROID_R_H +#define __ANDROID_R_H + +namespace android { +namespace R { + +namespace attr { + enum { + background = 0x01010000, // default + foreground = 0x01010001, // default + }; +} + +namespace style { + enum { + Theme_One = 0x01020000, // default + }; +} + +} // namespace R +} // namespace android + +#endif // __ANDROID_R_H |