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

Side by Side Diff: chrome/browser/about_flags.cc

Issue 1006953003: Revert "Remove spellcheck feedback." (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 9 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/browser/about_flags.h" 5 #include "chrome/browser/about_flags.h"
6 6
7 #include <iterator> 7 #include <iterator>
8 #include <map> 8 #include <map>
9 #include <set> 9 #include <set>
10 #include <utility> 10 #include <utility>
(...skipping 1413 matching lines...) Expand 10 before | Expand all | Expand 10 after
1424 #endif 1424 #endif
1425 #if defined(TOOLKIT_VIEWS) 1425 #if defined(TOOLKIT_VIEWS)
1426 { 1426 {
1427 "disable-hide-inactive-stacked-tab-close-buttons", 1427 "disable-hide-inactive-stacked-tab-close-buttons",
1428 IDS_FLAGS_DISABLE_HIDE_INACTIVE_STACKED_TAB_CLOSE_BUTTONS_NAME, 1428 IDS_FLAGS_DISABLE_HIDE_INACTIVE_STACKED_TAB_CLOSE_BUTTONS_NAME,
1429 IDS_FLAGS_DISABLE_HIDE_INACTIVE_STACKED_TAB_CLOSE_BUTTONS_DESCRIPTION, 1429 IDS_FLAGS_DISABLE_HIDE_INACTIVE_STACKED_TAB_CLOSE_BUTTONS_DESCRIPTION,
1430 kOsCrOS | kOsWin | kOsLinux, 1430 kOsCrOS | kOsWin | kOsLinux,
1431 SINGLE_VALUE_TYPE(switches::kDisableHideInactiveStackedTabCloseButtons) 1431 SINGLE_VALUE_TYPE(switches::kDisableHideInactiveStackedTabCloseButtons)
1432 }, 1432 },
1433 #endif 1433 #endif
1434 #if defined(ENABLE_SPELLCHECK)
1435 {
1436 "enable-spelling-feedback-field-trial",
1437 IDS_FLAGS_ENABLE_SPELLING_FEEDBACK_FIELD_TRIAL_NAME,
1438 IDS_FLAGS_ENABLE_SPELLING_FEEDBACK_FIELD_TRIAL_DESCRIPTION,
1439 kOsAll,
1440 SINGLE_VALUE_TYPE(switches::kEnableSpellingFeedbackFieldTrial)
1441 },
1442 #endif
1434 { 1443 {
1435 "enable-webgl-draft-extensions", 1444 "enable-webgl-draft-extensions",
1436 IDS_FLAGS_ENABLE_WEBGL_DRAFT_EXTENSIONS_NAME, 1445 IDS_FLAGS_ENABLE_WEBGL_DRAFT_EXTENSIONS_NAME,
1437 IDS_FLAGS_ENABLE_WEBGL_DRAFT_EXTENSIONS_DESCRIPTION, 1446 IDS_FLAGS_ENABLE_WEBGL_DRAFT_EXTENSIONS_DESCRIPTION,
1438 kOsAll, 1447 kOsAll,
1439 SINGLE_VALUE_TYPE(switches::kEnableWebGLDraftExtensions) 1448 SINGLE_VALUE_TYPE(switches::kEnableWebGLDraftExtensions)
1440 }, 1449 },
1441 { 1450 {
1442 "enable-web-midi", 1451 "enable-web-midi",
1443 IDS_FLAGS_ENABLE_WEB_MIDI_NAME, 1452 IDS_FLAGS_ENABLE_WEB_MIDI_NAME,
(...skipping 1427 matching lines...) Expand 10 before | Expand all | Expand 10 after
2871 } 2880 }
2872 2881
2873 const Experiment* GetExperiments(size_t* count) { 2882 const Experiment* GetExperiments(size_t* count) {
2874 *count = num_experiments; 2883 *count = num_experiments;
2875 return experiments; 2884 return experiments;
2876 } 2885 }
2877 2886
2878 } // namespace testing 2887 } // namespace testing
2879 2888
2880 } // namespace about_flags 2889 } // namespace about_flags
OLDNEW
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | chrome/browser/renderer_context_menu/spelling_menu_observer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698