Index: base/sys_info_android.cc |
diff --git a/base/sys_info_android.cc b/base/sys_info_android.cc |
index 1e0b002f601316a2729652df062bf9f7fcdb6798..577ca0e6bd17b2cf4316d8166546f657013c3588 100644 |
--- a/base/sys_info_android.cc |
+++ b/base/sys_info_android.cc |
@@ -17,9 +17,9 @@ namespace { |
// cannot be acquired. |
// TODO(dfalcantara): Keep this reasonably up to date with the latest publicly |
// available version of Android. |
-static const int kDefaultAndroidMajorVersion = 4; |
-static const int kDefaultAndroidMinorVersion = 0; |
-static const int kDefaultAndroidBugfixVersion = 3; |
+const int kDefaultAndroidMajorVersion = 4; |
+const int kDefaultAndroidMinorVersion = 3; |
jar (doing other things)
2013/07/27 18:18:01
Why isn't this stuff pulled from the OS?
This see
joth
2013/07/27 19:23:39
The clue is in "kDefault..." (and, in the comment
jar (doing other things)
2013/07/28 19:19:02
That is mostly a great answer... but...
Is it rea
jar (doing other things)
2013/07/29 19:03:27
IMO, sending up the old answer will seemingly allo
|
+const int kDefaultAndroidBugfixVersion = 0; |
// Parse out the OS version numbers from the system properties. |
void ParseOSVersionNumbers(const char* os_version_str, |