Index: base/android/library_loader/library_load_from_apk_status_codes.h |
diff --git a/base/android/library_loader/library_load_from_apk_status_codes.h b/base/android/library_loader/library_load_from_apk_status_codes.h |
index 73ddbd5bebe60f963a8e55f979f6ee9d87002cba..21f40bca282f1a2dd0e39e2f6f180dcb617220db 100644 |
--- a/base/android/library_loader/library_load_from_apk_status_codes.h |
+++ b/base/android/library_loader/library_load_from_apk_status_codes.h |
@@ -21,11 +21,14 @@ enum LibraryLoadFromApkStatusCodes { |
// The device supports loading a library directly from the APK file. |
LIBRARY_LOAD_FROM_APK_STATUS_CODES_SUPPORTED = 2, |
- // A library was successfully loaded directly from the APK file. |
+ // The Chromium library was successfully loaded directly from the APK file. |
LIBRARY_LOAD_FROM_APK_STATUS_CODES_SUCCESSFUL = 3, |
+ // The Chromium library was not page aligned in the APK file. |
+ LIBRARY_LOAD_FROM_APK_STATUS_CODES_NOT_ALIGNED = 4, |
+ |
// End sentinel. |
- LIBRARY_LOAD_FROM_APK_STATUS_CODES_MAX = 4, |
+ LIBRARY_LOAD_FROM_APK_STATUS_CODES_MAX = 5, |
}; |
} // namespace |