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

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

Issue 602083002: Revert of Removed the ScriptedSpeech content side. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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
« no previous file with comments | « content/child/runtime_features.cc ('k') | content/public/common/content_switches.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 54
55 // How much of the top controls need to be shown before they will auto show. 55 // How much of the top controls need to be shown before they will auto show.
56 public static final String TOP_CONTROLS_SHOW_THRESHOLD = "top-controls-show- threshold"; 56 public static final String TOP_CONTROLS_SHOW_THRESHOLD = "top-controls-show- threshold";
57 57
58 // How much of the top controls need to be hidden before they will auto hide . 58 // How much of the top controls need to be hidden before they will auto hide .
59 public static final String TOP_CONTROLS_HIDE_THRESHOLD = "top-controls-hide- threshold"; 59 public static final String TOP_CONTROLS_HIDE_THRESHOLD = "top-controls-hide- threshold";
60 60
61 // Native switch - chrome_switches::kEnableInstantExtendedAPI 61 // Native switch - chrome_switches::kEnableInstantExtendedAPI
62 public static final String ENABLE_INSTANT_EXTENDED_API = "enable-instant-ext ended-api"; 62 public static final String ENABLE_INSTANT_EXTENDED_API = "enable-instant-ext ended-api";
63 63
64 // Native switch - content_switches::kEnableSpeechRecognition
65 public static final String ENABLE_SPEECH_RECOGNITION = "enable-speech-recogn ition";
66
64 // Native switch - shell_switches::kDumpRenderTree 67 // Native switch - shell_switches::kDumpRenderTree
65 public static final String DUMP_RENDER_TREE = "dump-render-tree"; 68 public static final String DUMP_RENDER_TREE = "dump-render-tree";
66 69
67 // Native switch - chrome_switches::kDisablePopupBlocking 70 // Native switch - chrome_switches::kDisablePopupBlocking
68 public static final String DISABLE_POPUP_BLOCKING = "disable-popup-blocking" ; 71 public static final String DISABLE_POPUP_BLOCKING = "disable-popup-blocking" ;
69 72
70 // Native switch - content_switches::kDisableOverlayFullscreenVideoSubtitle 73 // Native switch - content_switches::kDisableOverlayFullscreenVideoSubtitle
71 public static final String DISABLE_OVERLAY_FULLSCREEN_VIDEO_SUBTITLE = 74 public static final String DISABLE_OVERLAY_FULLSCREEN_VIDEO_SUBTITLE =
72 "disable-overlay-fullscreen-video-subtitle"; 75 "disable-overlay-fullscreen-video-subtitle";
73 76
74 // Native switch - gfx_switches::kForceDeviceScaleFactor 77 // Native switch - gfx_switches::kForceDeviceScaleFactor
75 public static final String FORCE_DEVICE_SCALE_FACTOR = 78 public static final String FORCE_DEVICE_SCALE_FACTOR =
76 "force-device-scale-factor"; 79 "force-device-scale-factor";
77 80
78 // Prevent instantiation. 81 // Prevent instantiation.
79 private ContentSwitches() {} 82 private ContentSwitches() {}
80 } 83 }
OLDNEW
« no previous file with comments | « content/child/runtime_features.cc ('k') | content/public/common/content_switches.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698