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

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

Issue 598923002: Removed the ScriptedSpeech content side. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added changes for removal of kEnableSpeechRecognition 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
67 // Native switch - shell_switches::kDumpRenderTree 64 // Native switch - shell_switches::kDumpRenderTree
68 public static final String DUMP_RENDER_TREE = "dump-render-tree"; 65 public static final String DUMP_RENDER_TREE = "dump-render-tree";
69 66
70 // Native switch - chrome_switches::kDisablePopupBlocking 67 // Native switch - chrome_switches::kDisablePopupBlocking
71 public static final String DISABLE_POPUP_BLOCKING = "disable-popup-blocking" ; 68 public static final String DISABLE_POPUP_BLOCKING = "disable-popup-blocking" ;
72 69
73 // Native switch - content_switches::kDisableOverlayFullscreenVideoSubtitle 70 // Native switch - content_switches::kDisableOverlayFullscreenVideoSubtitle
74 public static final String DISABLE_OVERLAY_FULLSCREEN_VIDEO_SUBTITLE = 71 public static final String DISABLE_OVERLAY_FULLSCREEN_VIDEO_SUBTITLE =
75 "disable-overlay-fullscreen-video-subtitle"; 72 "disable-overlay-fullscreen-video-subtitle";
76 73
77 // Native switch - gfx_switches::kForceDeviceScaleFactor 74 // Native switch - gfx_switches::kForceDeviceScaleFactor
78 public static final String FORCE_DEVICE_SCALE_FACTOR = 75 public static final String FORCE_DEVICE_SCALE_FACTOR =
79 "force-device-scale-factor"; 76 "force-device-scale-factor";
80 77
81 // Prevent instantiation. 78 // Prevent instantiation.
82 private ContentSwitches() {} 79 private ContentSwitches() {}
83 } 80 }
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