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

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

Issue 11829042: [Spellcheck] Turning spelling service on by default. Adding command line flag to turn spelling serv… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 11 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 | Annotate | Revision Log
« no previous file with comments | « chrome/common/chrome_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 "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 1304 matching lines...) Expand 10 before | Expand all | Expand 10 after
1315 // Runs un-installation steps that were done by chrome first-run. 1315 // Runs un-installation steps that were done by chrome first-run.
1316 const char kUninstall[] = "uninstall"; 1316 const char kUninstall[] = "uninstall";
1317 1317
1318 // Use hardware gpu, if available, for tests. 1318 // Use hardware gpu, if available, for tests.
1319 const char kUseGpuInTests[] = "use-gpu-in-tests"; 1319 const char kUseGpuInTests[] = "use-gpu-in-tests";
1320 1320
1321 // Uses Spdy for the transport protocol instead of HTTP. This is a temporary 1321 // Uses Spdy for the transport protocol instead of HTTP. This is a temporary
1322 // testing flag. 1322 // testing flag.
1323 const char kUseSpdy[] = "use-spdy"; 1323 const char kUseSpdy[] = "use-spdy";
1324 1324
1325 // Enables use of the spelling web service. This will only work if asynchronous 1325 // Disables use of the spelling web service and only provides suggestions.
1326 // spell checking is not disabled. 1326 // This will only work if asynchronous spell checking is not disabled.
1327 const char kUseSpellingService[] = "use-spelling-service"; 1327 const char kUseSpellingSuggestions[] = "use-spelling-suggestions";
groby-ooo-7-16 2013/01/10 01:00:56 So we _always_ get suggestions? Shouldn't this the
rpetterson 2013/01/10 01:06:10 If you want to disable the spelling service, unche
1328 1328
1329 // Sets the maximum SPDY sessions per domain. 1329 // Sets the maximum SPDY sessions per domain.
1330 const char kMaxSpdySessionsPerDomain[] = "max-spdy-sessions-per-domain"; 1330 const char kMaxSpdySessionsPerDomain[] = "max-spdy-sessions-per-domain";
1331 1331
1332 // Sets the maximum concurrent streams over a SPDY session. 1332 // Sets the maximum concurrent streams over a SPDY session.
1333 const char kMaxSpdyConcurrentStreams[] = "max-spdy-concurrent-streams"; 1333 const char kMaxSpdyConcurrentStreams[] = "max-spdy-concurrent-streams";
1334 1334
1335 // Specifies the user data directory, which is where the browser will look for 1335 // Specifies the user data directory, which is where the browser will look for
1336 // all of its state. 1336 // all of its state.
1337 const char kUserDataDir[] = "user-data-dir"; 1337 const char kUserDataDir[] = "user-data-dir";
(...skipping 283 matching lines...) Expand 10 before | Expand all | Expand 10 after
1621 1621
1622 // ----------------------------------------------------------------------------- 1622 // -----------------------------------------------------------------------------
1623 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1623 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1624 // 1624 //
1625 // You were going to just dump your switches here, weren't you? Instead, please 1625 // You were going to just dump your switches here, weren't you? Instead, please
1626 // put them in alphabetical order above, or in order inside the appropriate 1626 // put them in alphabetical order above, or in order inside the appropriate
1627 // ifdef at the bottom. The order should match the header. 1627 // ifdef at the bottom. The order should match the header.
1628 // ----------------------------------------------------------------------------- 1628 // -----------------------------------------------------------------------------
1629 1629
1630 } // namespace switches 1630 } // namespace switches
OLDNEW
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698