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

Side by Side Diff: content/public/common/content_switches.cc

Issue 2159283003: [WIP][DO NOT LAND] Componentize spellcheck Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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/public/common/content_switches.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 #include "build/build_config.h" 5 #include "build/build_config.h"
6 #include "content/public/common/content_switches.h" 6 #include "content/public/common/content_switches.h"
7 7
8 namespace switches { 8 namespace switches {
9 9
10 // The number of MSAA samples for canvas2D. Requires MSAA support by GPU to 10 // The number of MSAA samples for canvas2D. Requires MSAA support by GPU to
(...skipping 1050 matching lines...) Expand 10 before | Expand all | Expand 10 after
1061 1061
1062 #if defined(ENABLE_IPC_FUZZER) 1062 #if defined(ENABLE_IPC_FUZZER)
1063 // Dumps IPC messages sent from renderer processes to the browser process to 1063 // Dumps IPC messages sent from renderer processes to the browser process to
1064 // the given directory. Used primarily to gather samples for IPC fuzzing. 1064 // the given directory. Used primarily to gather samples for IPC fuzzing.
1065 const char kIpcDumpDirectory[] = "ipc-dump-directory"; 1065 const char kIpcDumpDirectory[] = "ipc-dump-directory";
1066 1066
1067 // Specifies the testcase used by the IPC fuzzer. 1067 // Specifies the testcase used by the IPC fuzzer.
1068 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; 1068 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase";
1069 #endif 1069 #endif
1070 1070
1071
1072
1073
1074 #if defined(ENABLE_SPELLCHECK)
1075 #if defined(OS_ANDROID)
1076 // Enables use of the Android spellchecker.
1077 const char kEnableAndroidSpellChecker[] = "enable-android-spellchecker";
1078 #endif // defined(OS_ANDROID)
1079
1080 // Enables participation in the field trial for user feedback to spelling
1081 // service.
1082 const char kEnableSpellingFeedbackFieldTrial[] =
1083 "enable-spelling-feedback-field-trial";
1084
1085 // Specifies the number of seconds between sending batches of feedback to
1086 // spelling service. The default is 30 minutes. The minimum is 5 seconds. This
1087 // switch is for temporary testing only.
1088 // TODO(rouslan): Remove this flag when feedback testing is complete. Revisit by
1089 // August 2013.
1090 const char kSpellingServiceFeedbackIntervalSeconds[] =
1091 "spelling-service-feedback-interval-seconds";
1092
1093 // Specifies the URL where spelling service feedback data will be sent instead
1094 // of the default URL. This switch is for temporary testing only.
1095 // TODO(rouslan): Remove this flag when feedback testing is complete. Revisit by
1096 // August 2013.
1097 const char kSpellingServiceFeedbackUrl[] = "spelling-service-feedback-url";
1098 #endif // defined(ENABLE_SPELLCHECK)
1099
1100
1101
1102
1071 // Don't dump stuff here, follow the same order as the header. 1103 // Don't dump stuff here, follow the same order as the header.
1072 1104
1073 } // namespace switches 1105 } // namespace switches
OLDNEW
« no previous file with comments | « content/public/common/content_switches.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698