OLD | NEW |
---|---|
(Empty) | |
1 // Copyright | |
Alexei Svitkine (slow)
2013/10/29 15:26:21
Use the following copyright blob (in all the files
yao
2013/10/29 19:21:57
Done.
| |
2 | |
3 #ifndef CHROME_COMMON_FORM_FACTOR_H_ | |
4 #define CHROME_COMMON_FORM_FACTOR_H_ | |
5 | |
6 enum Study_FormFactor { | |
Alexei Svitkine (slow)
2013/10/29 15:26:21
This should be a different enum than the variation
yao
2013/10/29 19:21:57
Done.
| |
7 Study_FormFactor_DESKTOP = 0, | |
8 Study_FormFactor_PHONE = 1, | |
9 Study_FormFactor_TABLET = 2 | |
10 }; | |
11 | |
12 Study_FormFactor GetFormFactor(); | |
Alexei Svitkine (slow)
2013/10/29 15:26:21
Needs a comment. Mention that on non-Android, non-
yao
2013/10/29 19:21:57
Done.
| |
13 | |
14 #endif // CHROME_COMMON_FORM_FACTOR_H_ | |
OLD | NEW |