Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2811)

Unified Diff: chrome/android/javatests/src/org/chromium/chrome/browser/crash/LogcatExtractionCallableTest.java

Issue 2735133003: [Cleanup] Run git cl format on minidump uploader files. (Closed)
Patch Set: Manually revert questionable changes Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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();

Powered by Google App Engine
This is Rietveld 408576698