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

Side by Side Diff: chrome/common/chrome_switches.cc

Issue 654653002: Enables the user to select multiple languages for spellchecking (UI) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Temporarily disabled tests, fixed a bug 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
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 "chrome/common/chrome_switches.h" 5 #include "chrome/common/chrome_switches.h"
6 6
7 #include "base/base_switches.h" 7 #include "base/base_switches.h"
8 #include "base/command_line.h" 8 #include "base/command_line.h"
9 9
10 namespace switches { 10 namespace switches {
(...skipping 572 matching lines...) Expand 10 before | Expand all | Expand 10 after
583 const char kEnableSpdy4[] = "enable-spdy4"; 583 const char kEnableSpdy4[] = "enable-spdy4";
584 584
585 // Enables auto correction for misspelled words. 585 // Enables auto correction for misspelled words.
586 const char kEnableSpellingAutoCorrect[] = "enable-spelling-auto-correct"; 586 const char kEnableSpellingAutoCorrect[] = "enable-spelling-auto-correct";
587 587
588 // Enables participation in the field trial for user feedback to spelling 588 // Enables participation in the field trial for user feedback to spelling
589 // service. 589 // service.
590 const char kEnableSpellingFeedbackFieldTrial[] = 590 const char kEnableSpellingFeedbackFieldTrial[] =
591 "enable-spelling-feedback-field-trial"; 591 "enable-spelling-feedback-field-trial";
592 592
593 const char kEnableMultilingualSpellChecker[] =
594 "enable-multilingual-spellchecker";
595
593 // Enables a feature that holds back some SSLConnectJobs in order to 596 // Enables a feature that holds back some SSLConnectJobs in order to
594 // minimize the number of full SSL handshakes completed. 597 // minimize the number of full SSL handshakes completed.
595 const char kEnableSSLConnectJobWaiting[] = "enable-ssl-connect-job-waiting"; 598 const char kEnableSSLConnectJobWaiting[] = "enable-ssl-connect-job-waiting";
596 599
597 // Enables implementation of the Cache-Control: stale-while-revalidate directive 600 // Enables implementation of the Cache-Control: stale-while-revalidate directive
598 // which permits servers to allow the use of stale resources while revalidation 601 // which permits servers to allow the use of stale resources while revalidation
599 // proceeds in the background. 602 // proceeds in the background.
600 const char kEnableStaleWhileRevalidate[] = "enable-stale-while-revalidate"; 603 const char kEnableStaleWhileRevalidate[] = "enable-stale-while-revalidate";
601 604
602 // Enables an experimental hosted app experience. 605 // Enables an experimental hosted app experience.
(...skipping 754 matching lines...) Expand 10 before | Expand all | Expand 10 after
1357 1360
1358 // ----------------------------------------------------------------------------- 1361 // -----------------------------------------------------------------------------
1359 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1362 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1360 // 1363 //
1361 // You were going to just dump your switches here, weren't you? Instead, please 1364 // You were going to just dump your switches here, weren't you? Instead, please
1362 // put them in alphabetical order above, or in order inside the appropriate 1365 // put them in alphabetical order above, or in order inside the appropriate
1363 // ifdef at the bottom. The order should match the header. 1366 // ifdef at the bottom. The order should match the header.
1364 // ----------------------------------------------------------------------------- 1367 // -----------------------------------------------------------------------------
1365 1368
1366 } // namespace switches 1369 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698