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

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: use CallbackHelper and refactor PageCyclerTestActivity.java, PageCyclerTest.java 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..0744353c4944c1404748188a6b5bd90532d0c367 100644
--- a/android_webview/tools/WebViewShell/AndroidManifest.xml
+++ b/android_webview/tools/WebViewShell/AndroidManifest.xml
@@ -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.TelemetryActivity"
android:label="@string/title_activity_telemetry"
android:exported="true">
</activity>
<activity
- android:name=".TelemetryMemoryPressureActivity"
+ android:name="org.chromium.webview_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.JankActivity"
android:label="@string/title_activity_jank"
android:noHistory="true"
android:exported="true">
</activity>
<activity
- android:name=".StartupTimeActivity"
+ android:name="org.chromium.webview_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.WebViewBrowserActivity"
android:label="@string/title_activity_browser"
android:exported="true">
<intent-filter>
@@ -80,15 +80,14 @@
</intent-filter>
</activity>
<activity
- android:name=".WebViewLayoutTestActivity"
+ android:name="org.chromium.webview_shell.WebViewLayoutTestActivity"
android:label="@string/title_activity_layout_test"
android:exported="true">
</activity>
-
- <uses-library android:name="android.test.runner" />
+ <activity
+ android:name="org.chromium.webview_shell.PageCyclerTestActivity"
mikecase (-- gone --) 2015/09/28 08:36:34 I think you moved the test activities to a separat
+ android:label="@string/title_activity_page_cycler"
+ android:exported="true">
+ </activity>
</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