Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright | |
| 2 | |
| 3 #include "form_factor.h" | |
| 4 | |
| 5 Study_FormFactor GetFormFactor() { | |
| 6 UIUserInterfaceIdiom idiom = [[UIDevice currentDevice] userInterfaceIdiom]; | |
|
Alexei Svitkine (slow)
2013/10/29 15:26:21
This probably needs some include. You can probably
yao
2013/10/29 19:21:57
Done.
| |
| 7 if (idiom == UIUserInterfaceIdiomPad) { | |
| 8 return Study_FormFactor_TABLET; | |
| 9 } | |
| 10 return Study_FormFactor_PHONE; | |
| 11 } | |
| OLD | NEW |