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

Unified Diff: android_webview/tools/WebViewShell/AndroidManifest.xml

Issue 1364593002: Refactor android_webview_shell and its tests (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 3 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: android_webview/tools/WebViewShell/AndroidManifest.xml
diff --git a/android_webview/tools/WebViewShell/AndroidManifest.xml b/android_webview/tools/WebViewShell/AndroidManifest.xml
index a7a79e5e354f8ab8dd00756129e063c214dec3fe..cc73fb38a99889860ba1089f1907efeb3c2ef68e 100644
--- a/android_webview/tools/WebViewShell/AndroidManifest.xml
+++ b/android_webview/tools/WebViewShell/AndroidManifest.xml
@@ -6,7 +6,7 @@
<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
- package="org.chromium.webview_shell"
+ package="org.chromium.webview_shell.shell"
boliu 2015/09/23 16:59:07 is this needed? the extra .shell seems redundant
android:versionCode="1"
android:versionName="1.0" >
@@ -28,30 +28,30 @@
android:label="@string/app_name"
android:theme="@android:style/Theme.Light" >
<activity
- android:name=".TelemetryActivity"
+ android:name="org.chromium.webview_shell.shell.TelemetryActivity"
android:label="@string/title_activity_telemetry"
android:exported="true">
</activity>
<activity
- android:name=".TelemetryMemoryPressureActivity"
+ android:name="org.chromium.webview_shell.shell.TelemetryMemoryPressureActivity"
android:launchMode="singleTask"
android:label="@string/title_activity_telemetry"
android:exported="true">
</activity>
<activity
- android:name=".JankActivity"
+ android:name="org.chromium.webview_shell.shell.JankActivity"
android:label="@string/title_activity_jank"
android:noHistory="true"
android:exported="true">
</activity>
<activity
- android:name=".StartupTimeActivity"
+ android:name="org.chromium.webview_shell.shell.StartupTimeActivity"
android:label="@string/title_activity_startup_time"
android:noHistory="true"
android:exported="true">
</activity>
<activity
- android:name=".WebViewBrowserActivity"
+ android:name="org.chromium.webview_shell.shell.WebViewBrowserActivity"
android:label="@string/title_activity_browser"
android:exported="true">
<intent-filter>
@@ -80,15 +80,16 @@
</intent-filter>
</activity>
<activity
- android:name=".WebViewLayoutTestActivity"
+ android:name="org.chromium.webview_shell.shell.WebViewLayoutTestActivity"
android:label="@string/title_activity_layout_test"
android:exported="true">
</activity>
+ <activity
+ android:name="org.chromium.webview_shell.shell.PageCyclerTestActivity"
+ android:label="@string/title_activity_page_cycler"
+ android:exported="true">
+ </activity>
<uses-library android:name="android.test.runner" />
timvolodine 2015/09/23 15:46:29 can this be removed as well?
Yoland Yan(Google) 2015/09/23 19:51:51 Done
</application>
-
- <instrumentation android:name="org.chromium.webview_shell.WebViewLayoutTestRunner"
- android:targetPackage="org.chromium.webview_shell"
- android:label="Tests for org.chromium.webview_shell" />
</manifest>

Powered by Google App Engine
This is Rietveld 408576698