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

Unified Diff: android_webview/test/shell/src/org/chromium/android_webview/shell/AwShellApplication.java

Issue 13907007: Replace merge-ui-and-compositor-threads flag with no-merge-ui-and-compositor-threads flag (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: add flag for test Created 7 years, 8 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/test/shell/src/org/chromium/android_webview/shell/AwShellApplication.java
diff --git a/android_webview/test/shell/src/org/chromium/android_webview/shell/AwShellApplication.java b/android_webview/test/shell/src/org/chromium/android_webview/shell/AwShellApplication.java
index bac071fe1f295866b0a6b7db013f003921cf1480..581fff2f8b1174a91c794861cad8128b447a8c7a 100644
--- a/android_webview/test/shell/src/org/chromium/android_webview/shell/AwShellApplication.java
+++ b/android_webview/test/shell/src/org/chromium/android_webview/shell/AwShellApplication.java
@@ -28,6 +28,10 @@ public class AwShellApplication extends Application {
AwShellResourceProvider.registerResources(this);
CommandLine.initFromFile("/data/local/chrome-command-line");
+ // TODO(michaelbai) : Remove this once we fully move to UI/compositor thread merge mode.
+ if (!CommandLine.getInstance().hasSwitch("merge-ui-and-compositor-threads")) {
+ CommandLine.getInstance().appendSwitch("no-merge-ui-and-compositor-threads");
+ }
joth 2013/04/26 18:06:44 The plan was not to add this here to get upstream
michaelbai 2013/04/26 21:41:43 We want to run downstream in no-merge mode and ups
joth 2013/04/26 21:52:35 (Note this file is not used in downstream) The dif
if (CommandLine.getInstance().hasSwitch(CommandLine.WAIT_FOR_JAVA_DEBUGGER)) {
Log.e(TAG, "Waiting for Java debugger to connect...");
« android_webview/common/aw_switches.h ('K') | « android_webview/lib/main/aw_main_delegate.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698