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

Side by Side Diff: content/public/android/java/src/org/chromium/content/common/ContentSwitches.java

Issue 1278593004: Introduce ThreadedInputConnection behind a switch (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: handles render crash and navigation Created 4 years, 10 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 unified diff | Download patch
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 package org.chromium.content.common; 5 package org.chromium.content.common;
6 6
7 /** 7 /**
8 * Contains all of the command line switches that are specific to the content/ 8 * Contains all of the command line switches that are specific to the content/
9 * portion of Chromium on Android. 9 * portion of Chromium on Android.
10 */ 10 */
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 65
66 // Native switch kRendererProcessLimit 66 // Native switch kRendererProcessLimit
67 public static final String RENDER_PROCESS_LIMIT = "renderer-process-limit"; 67 public static final String RENDER_PROCESS_LIMIT = "renderer-process-limit";
68 68
69 // Native switch kInProcessGPU 69 // Native switch kInProcessGPU
70 public static final String IN_PROCESS_GPU = "in-process-gpu"; 70 public static final String IN_PROCESS_GPU = "in-process-gpu";
71 71
72 // Native switch kIPCSyncCompositing 72 // Native switch kIPCSyncCompositing
73 public static final String IPC_SYNC_COMPOSITING = "ipc-sync-compositing"; 73 public static final String IPC_SYNC_COMPOSITING = "ipc-sync-compositing";
74 74
75 // Native switch to use IME's own thread instead of using main UI thread.
76 public static final String USE_IME_THREAD = "use-ime-thread";
77
75 // Prevent instantiation. 78 // Prevent instantiation.
76 private ContentSwitches() {} 79 private ContentSwitches() {}
77 } 80 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698