diff options
author | mkosiba@chromium.org <mkosiba@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-03-25 18:04:01 +0000 |
---|---|---|
committer | mkosiba@chromium.org <mkosiba@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-03-25 18:04:01 +0000 |
commit | 2759bae2ace48cd87053ea417fd856907c621881 (patch) | |
tree | 5ab47e08a2630e5b217494d5abd21a5e9f1b48c4 /android_webview/test | |
parent | a58a0b1789645760d0407ffb9ac20408221179d5 (diff) | |
download | chromium_src-2759bae2ace48cd87053ea417fd856907c621881.zip chromium_src-2759bae2ace48cd87053ea417fd856907c621881.tar.gz chromium_src-2759bae2ace48cd87053ea417fd856907c621881.tar.bz2 |
[android_webview] Rename AndroidWebView* -> Aw*.
Just renaming some of the AndroidWebView* classes to match the new
naming scheme where we use the Aw prefix.
BUG=None
TESTS=Builds
Java-only change, works fine on android trybot.
NOTRY=true
Review URL: https://chromiumcodereview.appspot.com/12880022
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@190436 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'android_webview/test')
-rw-r--r-- | android_webview/test/shell/AndroidManifest.xml | 4 | ||||
-rw-r--r-- | android_webview/test/shell/src/org/chromium/android_webview/test/AwTestRunnerActivity.java (renamed from android_webview/test/shell/src/org/chromium/android_webview/test/AndroidWebViewTestRunnerActivity.java) | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/android_webview/test/shell/AndroidManifest.xml b/android_webview/test/shell/AndroidManifest.xml index a8276cb..0b10eea 100644 --- a/android_webview/test/shell/AndroidManifest.xml +++ b/android_webview/test/shell/AndroidManifest.xml @@ -18,8 +18,8 @@ <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> - <activity android:name="org.chromium.android_webview.test.AndroidWebViewTestRunnerActivity" - android:label="AndroidWebViewTestRunnerActivity"> + <activity android:name="org.chromium.android_webview.test.AwTestRunnerActivity" + android:label="AwTestRunnerActivity"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.FRAMEWORK_INSTRUMENTATION_TEST" /> diff --git a/android_webview/test/shell/src/org/chromium/android_webview/test/AndroidWebViewTestRunnerActivity.java b/android_webview/test/shell/src/org/chromium/android_webview/test/AwTestRunnerActivity.java index 5abf524..9bd8edd 100644 --- a/android_webview/test/shell/src/org/chromium/android_webview/test/AndroidWebViewTestRunnerActivity.java +++ b/android_webview/test/shell/src/org/chromium/android_webview/test/AwTestRunnerActivity.java @@ -15,7 +15,7 @@ import android.widget.LinearLayout; /* * This is a lightweight activity for tests that only require WebView functionality. */ -public class AndroidWebViewTestRunnerActivity extends Activity { +public class AwTestRunnerActivity extends Activity { private LinearLayout mLinearLayout; @@ -26,7 +26,7 @@ public class AndroidWebViewTestRunnerActivity extends Activity { // TODO(joth): When SW-renderer is available, we'll want to enable this on a per-test // basis. boolean hardwareAccelerated = true; - Log.i("AndroidWebViewTestRunnerActivity", "Is " + (hardwareAccelerated ? "" : "NOT ") + Log.i("AwTestRunnerActivity", "Is " + (hardwareAccelerated ? "" : "NOT ") + "hardware accelerated"); if (hardwareAccelerated) { |