| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |