diff options
author | yoz@chromium.org <yoz@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-03-08 14:03:07 +0000 |
---|---|---|
committer | yoz@chromium.org <yoz@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-03-08 14:03:07 +0000 |
commit | f9461a945da6fb2d47c89b64ca4eb7d6c1dcf68a (patch) | |
tree | 322f6ac2caadab65b5b4acda584c5b3b2bb31356 /android_webview | |
parent | 2dc46d09ed299eb2b191eb89ec1d8eeb99681633 (diff) | |
download | chromium_src-f9461a945da6fb2d47c89b64ca4eb7d6c1dcf68a.zip chromium_src-f9461a945da6fb2d47c89b64ca4eb7d6c1dcf68a.tar.gz chromium_src-f9461a945da6fb2d47c89b64ca4eb7d6c1dcf68a.tar.bz2 |
Add missing package definition to AwLayoutSizerTest.
Review URL: https://chromiumcodereview.appspot.com/12630008
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@186957 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'android_webview')
-rw-r--r-- | android_webview/javatests/src/org/chromium/android_webview/test/AwLayoutSizerTest.java | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/android_webview/javatests/src/org/chromium/android_webview/test/AwLayoutSizerTest.java b/android_webview/javatests/src/org/chromium/android_webview/test/AwLayoutSizerTest.java index 1edb33d..687e93c 100644 --- a/android_webview/javatests/src/org/chromium/android_webview/test/AwLayoutSizerTest.java +++ b/android_webview/javatests/src/org/chromium/android_webview/test/AwLayoutSizerTest.java @@ -2,6 +2,8 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. +package org.chromium.android_webview.test; + import android.view.View; import android.view.View.MeasureSpec; import android.test.InstrumentationTestCase; @@ -29,10 +31,10 @@ public class AwLayoutSizerTest extends InstrumentationTestCase { } } - private final int firstContentWidth = 101; - private final int firstContentHeight = 389; - private final int secondContentWidth = 103; - private final int secondContentHeight = 397; + private static final int firstContentWidth = 101; + private static final int firstContentHeight = 389; + private static final int secondContentWidth = 103; + private static final int secondContentHeight = 397; public void testCanQueryContentSize() { LayoutSizerDelegate delegate = new LayoutSizerDelegate(); |