| Index: chrome/android/webapk/libs/runtime_library/src/org/chromium/webapk/lib/runtime_library/HostBrowserLauncher.java
|
| diff --git a/chrome/android/webapk/libs/runtime_library/src/org/chromium/webapk/lib/runtime_library/HostBrowserLauncher.java b/chrome/android/webapk/libs/runtime_library/src/org/chromium/webapk/lib/runtime_library/HostBrowserLauncher.java
|
| index 5f63ae5cec0204c7c18ba5314c4f1b5a1fb7ffe8..553f243d7b342d669cff71b4fcdc00510de68281 100644
|
| --- a/chrome/android/webapk/libs/runtime_library/src/org/chromium/webapk/lib/runtime_library/HostBrowserLauncher.java
|
| +++ b/chrome/android/webapk/libs/runtime_library/src/org/chromium/webapk/lib/runtime_library/HostBrowserLauncher.java
|
| @@ -135,7 +135,8 @@ public class HostBrowserLauncher {
|
| private static long getLongFromBundle(Bundle bundle, String key) {
|
| String value = bundle.getString(key);
|
| if (value == null || !value.endsWith("L")) {
|
| - return 0;
|
| + // This value is equal to kInvalidOrMissingColor in the C++ content::Manifest struct.
|
| + return ((long) Integer.MAX_VALUE) + 1;
|
| }
|
| try {
|
| return Long.parseLong(value.substring(0, value.length() - 1));
|
|
|