summaryrefslogtreecommitdiffstats
path: root/chromium/build/android/docs/class_verification_failures.md
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@qt.io>2020-01-23 17:21:03 +0100
committerAllan Sandfeld Jensen <allan.jensen@qt.io>2020-01-23 16:25:15 +0000
commitc551f43206405019121bd2b2c93714319a0a3300 (patch)
tree1f48c30631c421fd4bbb3c36da20183c8a2ed7d7 /chromium/build/android/docs/class_verification_failures.md
parent7961cea6d1041e3e454dae6a1da660b453efd238 (diff)
BASELINE: Update Chromium to 79.0.3945.139
Change-Id: I336b7182fab9bca80b709682489c07db112eaca5 Reviewed-by: Allan Sandfeld Jensen <allan.jensen@qt.io>
Diffstat (limited to 'chromium/build/android/docs/class_verification_failures.md')
-rw-r--r--chromium/build/android/docs/class_verification_failures.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/chromium/build/android/docs/class_verification_failures.md b/chromium/build/android/docs/class_verification_failures.md
index bf9a8a2952c..36ee97ee712 100644
--- a/chromium/build/android/docs/class_verification_failures.md
+++ b/chromium/build/android/docs/class_verification_failures.md
@@ -127,7 +127,7 @@ look as follows:
* These need to exist in a separate class so that Android framework can successfully verify
* classes without encountering the new APIs.
*/
-@DoNotInline
+@VerifiesOnOMR1
@TargetApi(Build.VERSION_CODES.O_MR1)
public class ApiHelperForOMR1 {
private ApiHelperForOMR1() {}
@@ -136,8 +136,8 @@ public class ApiHelperForOMR1 {
}
```
-* `@DoNotInline`: this is a chromium-defined annotation to tell proguard (and
- similar tools) not to inline this class or its methods (since that would
+* `@VerifiesOnO_MR1`: this is a chromium-defined annotation to tell proguard
+ (and similar tools) not to inline this class or its methods (since that would
defeat the point of out-of-lining!)
* `@TargetApi(Build.VERSION_CODES.O_MR1)`: this tells Android Lint it's OK to
use OMR1 APIs since this class is only used on OMR1 and above. Substitute