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

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

Issue 21629003: Enable QuickOffice editor by default (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: updated version and name Created 7 years, 4 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/app/chromeos_strings.grdp ('k') | chrome/browser/browser_resources.grd » ('j') | 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/browser/about_flags.h" 5 #include "chrome/browser/about_flags.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <iterator> 8 #include <iterator>
9 #include <map> 9 #include <map>
10 #include <set> 10 #include <set>
(...skipping 1544 matching lines...) Expand 10 before | Expand all | Expand 10 after
1555 { 1555 {
1556 "high-dpi-support", 1556 "high-dpi-support",
1557 IDS_FLAGS_HIDPI_NAME, 1557 IDS_FLAGS_HIDPI_NAME,
1558 IDS_FLAGS_HIDPI_DESCRIPTION, 1558 IDS_FLAGS_HIDPI_DESCRIPTION,
1559 kOsWin, 1559 kOsWin,
1560 ENABLE_DISABLE_VALUE_TYPE_AND_VALUE(switches::kHighDPISupport,"1", 1560 ENABLE_DISABLE_VALUE_TYPE_AND_VALUE(switches::kHighDPISupport,"1",
1561 switches::kHighDPISupport,"0") 1561 switches::kHighDPISupport,"0")
1562 }, 1562 },
1563 #if defined(OS_CHROMEOS) 1563 #if defined(OS_CHROMEOS)
1564 { 1564 {
1565 "enable-quickoffice-editing", 1565 "enable-quickoffice-viewing",
1566 IDS_FLAGS_ENABLE_QUICKOFFICE_DESKTOP_EDIT_NAME, 1566 IDS_FLAGS_ENABLE_QUICKOFFICE_DESKTOP_VIEWING_NAME,
1567 IDS_FLAGS_ENABLE_QUICKOFFICE_DESKTOP_EDIT_DESCRIPTION, 1567 IDS_FLAGS_ENABLE_QUICKOFFICE_DESKTOP_VIEWING_DESCRIPTION,
1568 kOsCrOS, 1568 kOsCrOS,
1569 SINGLE_VALUE_TYPE(switches::kEnableQuickofficeEdit), 1569 SINGLE_VALUE_TYPE(switches::kEnableQuickofficeViewing),
1570 }, 1570 },
1571 { 1571 {
1572 "enable-sticky-keys", 1572 "enable-sticky-keys",
1573 IDS_FLAGS_ENABLE_STICKY_KEYS_NAME, 1573 IDS_FLAGS_ENABLE_STICKY_KEYS_NAME,
1574 IDS_FLAGS_ENABLE_STICKY_KEYS_DESCRIPTION, 1574 IDS_FLAGS_ENABLE_STICKY_KEYS_DESCRIPTION,
1575 kOsCrOS, 1575 kOsCrOS,
1576 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableStickyKeys, 1576 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableStickyKeys,
1577 switches::kDisableStickyKeys) 1577 switches::kDisableStickyKeys)
1578 }, 1578 },
1579 #endif 1579 #endif
(...skipping 534 matching lines...) Expand 10 before | Expand all | Expand 10 after
2114 } 2114 }
2115 2115
2116 const Experiment* GetExperiments(size_t* count) { 2116 const Experiment* GetExperiments(size_t* count) {
2117 *count = num_experiments; 2117 *count = num_experiments;
2118 return experiments; 2118 return experiments;
2119 } 2119 }
2120 2120
2121 } // namespace testing 2121 } // namespace testing
2122 2122
2123 } // namespace about_flags 2123 } // namespace about_flags
OLDNEW
« no previous file with comments | « chrome/app/chromeos_strings.grdp ('k') | chrome/browser/browser_resources.grd » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698