| Index: content/shell/android/linker_test_apk/src/org/chromium/chromium_linker_test_apk/LinkerTests.java
|
| diff --git a/content/shell/android/linker_test_apk/src/org/chromium/chromium_linker_test_apk/LinkerTests.java b/content/shell/android/linker_test_apk/src/org/chromium/chromium_linker_test_apk/LinkerTests.java
|
| index 0ca4e494c591c02c6224571a5b57672740656a35..da6cdec73260d5a9bf5e6defd1980067604b793c 100644
|
| --- a/content/shell/android/linker_test_apk/src/org/chromium/chromium_linker_test_apk/LinkerTests.java
|
| +++ b/content/shell/android/linker_test_apk/src/org/chromium/chromium_linker_test_apk/LinkerTests.java
|
| @@ -6,7 +6,7 @@ package org.chromium.chromium_linker_test_apk;
|
|
|
| import android.util.Log;
|
|
|
| -import org.chromium.base.JNINamespace;
|
| +import org.chromium.base.annotations.JNINamespace;
|
| import org.chromium.base.library_loader.Linker;
|
|
|
| /**
|
| @@ -47,10 +47,11 @@ public class LinkerTests implements Linker.TestRunner {
|
| checkSharedRelro = true;
|
| }
|
|
|
| - if (checkSharedRelro)
|
| + if (checkSharedRelro) {
|
| return nativeCheckForSharedRelros(isBrowserProcess);
|
| - else
|
| + } else {
|
| return nativeCheckForNoSharedRelros(isBrowserProcess);
|
| + }
|
| }
|
|
|
| // Check that there are shared RELRO sections in the current process,
|
|
|