Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(926)

Unified Diff: base/sys_info_android.cc

Issue 20752003: Android: Bump up the fallback OS version number to 4.3.0 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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,
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698