| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +1 |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +1 |
// Returns the first Android level the device had.What does "first android level the device had" mean? Like, the version it gets when its factory reset? Something else?
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
// Returns the first Android level the device had.What does "first android level the device had" mean? Like, the version it gets when its factory reset? Something else?
Updated the wording. For more info, you can follow the path from http://shortn/_tonWP0thCA, (Google internal)
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +1 |
base::android::android_info::SDK_VERSION_OREO;Hm, the only user of this function checks for oreo, which per https://support.google.com/chrome/thread/352616098/sunsetting-chrome-support-for-android-8-0-oreo-and-android-9-0-pie?hl=en&sjid=4708975472713495052-NA we no longer support for chrome. Do we still support it for webview?
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
base::android::android_info::SDK_VERSION_OREO;Hm, the only user of this function checks for oreo, which per https://support.google.com/chrome/thread/352616098/sunsetting-chrome-support-for-android-8-0-oreo-and-android-9-0-pie?hl=en&sjid=4708975472713495052-NA we no longer support for chrome. Do we still support it for webview?
https://chromium-review.googlesource.com/c/chromium/src/+/7137302/comment/41cc2766_985d3757/
This comment should answer that first part of this question.
To see users and safety, we introduced this UMA, https://chromium-review.googlesource.com/c/chromium/src/+/7146728 and we still see users who have a first level pre Oreo.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +1 |
// Returns the first Android level the device had.Vikram PasupathyWhat does "first android level the device had" mean? Like, the version it gets when its factory reset? Something else?
Updated the wording. For more info, you can follow the path from http://shortn/_tonWP0thCA, (Google internal)
It's "The SDK API level that the device is initially launched with." I'd suggest let's just use that official wording as is.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
// Returns the first Android level the device had.Vikram PasupathyWhat does "first android level the device had" mean? Like, the version it gets when its factory reset? Something else?
Xiaohan WangUpdated the wording. For more info, you can follow the path from http://shortn/_tonWP0thCA, (Google internal)
It's "The SDK API level that the device is initially launched with." I'd suggest let's just use that official wording as is.
Thank you! Updated.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
base::android::android_info::SDK_VERSION_OREO;Vikram PasupathyHm, the only user of this function checks for oreo, which per https://support.google.com/chrome/thread/352616098/sunsetting-chrome-support-for-android-8-0-oreo-and-android-9-0-pie?hl=en&sjid=4708975472713495052-NA we no longer support for chrome. Do we still support it for webview?
https://chromium-review.googlesource.com/c/chromium/src/+/7137302/comment/41cc2766_985d3757/
This comment should answer that first part of this question.
To see users and safety, we introduced this UMA, https://chromium-review.googlesource.com/c/chromium/src/+/7146728 and we still see users who have a first level pre Oreo.
Added b:459977924 for more information and prior discussion with Android owners.
If that's fine, I can resolve this comment.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +1 |
Sorry, I didn't realize you were waiting for me here
// Returns the SDK API level that the device is initially launched with.nit: "that the device initially launched with" or "was initially launched with"
base::android::android_info::SDK_VERSION_OREO;Vikram PasupathyHm, the only user of this function checks for oreo, which per https://support.google.com/chrome/thread/352616098/sunsetting-chrome-support-for-android-8-0-oreo-and-android-9-0-pie?hl=en&sjid=4708975472713495052-NA we no longer support for chrome. Do we still support it for webview?
Vikram Pasupathyhttps://chromium-review.googlesource.com/c/chromium/src/+/7137302/comment/41cc2766_985d3757/
This comment should answer that first part of this question.
To see users and safety, we introduced this UMA, https://chromium-review.googlesource.com/c/chromium/src/+/7146728 and we still see users who have a first level pre Oreo.
Added b:459977924 for more information and prior discussion with Android owners.
If that's fine, I can resolve this comment.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Commit-Queue | +2 |
// Returns the SDK API level that the device is initially launched with.nit: "that the device initially launched with" or "was initially launched with"
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
9 is the latest approved patch-set.
The change was submitted with unreviewed changes in the following files:
```
The name of the file: base/system/sys_info.h
Insertions: 1, Deletions: 1.
@@ -324,7 +324,7 @@
// devices with similar hardware components.
static std::string GetAndroidHardwareClass();
- // Returns the SDK API level that the device is initially launched with.
+ // Returns the SDK API level that the device initially launched with.
static std::string GetAndroidFirstApiLevel();
#endif // BUILDFLAG(IS_ANDROID)
```
Move FirstLevel check to SysInfo
By putting the first level check to the SysInfo, we avoid a JNI jump.
This matches the work done in MediaCodecUtil to GetAndroidHardware to
detect MediaTek devices, in
https://chromium.googlesource.com/chromium/src/+/6c1b4b93191cd5d4598ceab394a62e5d765.
Verified by logging the FirstApiLevel with and without my change on a
Pixel 5. Both reported the same ApiLevel of 30.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |