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

Unified Diff: android_webview/javatests/src/org/chromium/android_webview/test/AwContentsClientGetVideoLoadingProgressViewTest.java

Issue 98853009: Fixing Java style issues in android_webview. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Bo's nits Created 7 years 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: android_webview/javatests/src/org/chromium/android_webview/test/AwContentsClientGetVideoLoadingProgressViewTest.java
diff --git a/android_webview/javatests/src/org/chromium/android_webview/test/AwContentsClientGetVideoLoadingProgressViewTest.java b/android_webview/javatests/src/org/chromium/android_webview/test/AwContentsClientGetVideoLoadingProgressViewTest.java
index e0a1ead28745a36372d2c33be416a092d9af4d84..bc4b37bfbb27f9a2ff6f05eda4d4a939a3f5fece 100644
--- a/android_webview/javatests/src/org/chromium/android_webview/test/AwContentsClientGetVideoLoadingProgressViewTest.java
+++ b/android_webview/javatests/src/org/chromium/android_webview/test/AwContentsClientGetVideoLoadingProgressViewTest.java
@@ -56,14 +56,14 @@ public class AwContentsClientGetVideoLoadingProgressViewTest extends AwTestBase
public void testGetVideoLoadingProgressView() throws Throwable {
TestAwContentsClient contentsClient =
new FullScreenVideoTestAwContentsClient(getActivity()) {
- @Override
- protected View getVideoLoadingProgressView() {
- View view = new View(getInstrumentation().getTargetContext());
- view.addOnAttachStateChangeListener(
- AwContentsClientGetVideoLoadingProgressViewTest.this);
- return view;
- }
- };
+ @Override
+ protected View getVideoLoadingProgressView() {
+ View view = new View(getInstrumentation().getTargetContext());
+ view.addOnAttachStateChangeListener(
+ AwContentsClientGetVideoLoadingProgressViewTest.this);
+ return view;
+ }
+ };
final AwTestContainerView testContainerView =
createAwTestContainerViewOnMainSync(contentsClient);
final AwContents awContents = testContainerView.getAwContents();

Powered by Google App Engine
This is Rietveld 408576698