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

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

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
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 // Defines all the "content" command-line switches. 5 // Defines all the "content" command-line switches.
6 6
7 #ifndef CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ 7 #ifndef CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_
8 #define CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ 8 #define CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_
9 9
10 #include "build/build_config.h" 10 #include "build/build_config.h"
(...skipping 301 matching lines...) Expand 10 before | Expand all | Expand 10 after
312 CONTENT_EXPORT extern const char kFontCacheSharedHandle[]; 312 CONTENT_EXPORT extern const char kFontCacheSharedHandle[];
313 CONTENT_EXPORT extern const char kMemoryPressureThresholdsMb[]; 313 CONTENT_EXPORT extern const char kMemoryPressureThresholdsMb[];
314 CONTENT_EXPORT extern const char kTraceExportEventsToETW[]; 314 CONTENT_EXPORT extern const char kTraceExportEventsToETW[];
315 #endif 315 #endif
316 316
317 #if defined(ENABLE_IPC_FUZZER) 317 #if defined(ENABLE_IPC_FUZZER)
318 extern const char kIpcDumpDirectory[]; 318 extern const char kIpcDumpDirectory[];
319 extern const char kIpcFuzzerTestcase[]; 319 extern const char kIpcFuzzerTestcase[];
320 #endif 320 #endif
321 321
322
323 #if defined(ENABLE_SPELLCHECK)
324 #if defined(OS_ANDROID)
325 CONTENT_EXPORT extern const char kEnableAndroidSpellChecker[];
326 #endif // defined(OS_ANDROID)
327 CONTENT_EXPORT extern const char kEnableSpellingFeedbackFieldTrial[];
328 CONTENT_EXPORT extern const char kSpellingServiceFeedbackIntervalSeconds[];
329 CONTENT_EXPORT extern const char kSpellingServiceFeedbackUrl[];
330 #endif // defined(ENABLE_SPELLCHECK)
331
332
333
334
322 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in 335 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in
323 // alphabetical order, or in one of the ifdefs (also in order in each section). 336 // alphabetical order, or in one of the ifdefs (also in order in each section).
324 337
325 } // namespace switches 338 } // namespace switches
326 339
327 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ 340 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_
OLDNEW
« no previous file with comments | « components/spellcheck/renderer/spelling_engine.h ('k') | content/public/common/content_switches.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698