| Index: chrome/android/javatests/src/org/chromium/chrome/browser/crash/LogcatExtractionCallableTest.java
|
| diff --git a/chrome/android/javatests/src/org/chromium/chrome/browser/crash/LogcatExtractionCallableTest.java b/chrome/android/javatests/src/org/chromium/chrome/browser/crash/LogcatExtractionCallableTest.java
|
| index 0ea34adc0887723293f59c875ccf79a6fa4a8cf7..9de518819a9722d7405b4d9f6e58205adb8c3dc3 100644
|
| --- a/chrome/android/javatests/src/org/chromium/chrome/browser/crash/LogcatExtractionCallableTest.java
|
| +++ b/chrome/android/javatests/src/org/chromium/chrome/browser/crash/LogcatExtractionCallableTest.java
|
| @@ -62,15 +62,15 @@ public class LogcatExtractionCallableTest extends CrashTestCase {
|
| }
|
| };
|
|
|
| - LogcatExtractionCallable callable = new LogcatExtractionCallable(
|
| - testContext, dumps, testIntent) {
|
| - @Override
|
| - protected List<String> getLogcat() throws IOException, InterruptedException {
|
| - List<String> result = new ArrayList<String>();
|
| - result.add(logContent);
|
| - return result;
|
| - }
|
| - };
|
| + LogcatExtractionCallable callable =
|
| + new LogcatExtractionCallable(testContext, dumps, testIntent) {
|
| + @Override
|
| + protected List<String> getLogcat() throws IOException, InterruptedException {
|
| + List<String> result = new ArrayList<String>();
|
| + result.add(logContent);
|
| + return result;
|
| + }
|
| + };
|
|
|
| callable.call();
|
|
|
|
|