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

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

Issue 10855239: Wired background loader component extension. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 8 years, 3 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
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 692 matching lines...) Expand 10 before | Expand all | Expand 10 after
703 }, 703 },
704 { 704 {
705 "enable-touch-events", 705 "enable-touch-events",
706 IDS_ENABLE_TOUCH_EVENTS_NAME, 706 IDS_ENABLE_TOUCH_EVENTS_NAME,
707 IDS_ENABLE_TOUCH_EVENTS_DESCRIPTION, 707 IDS_ENABLE_TOUCH_EVENTS_DESCRIPTION,
708 kOsAll, 708 kOsAll,
709 SINGLE_VALUE_TYPE(switches::kEnableTouchEvents) 709 SINGLE_VALUE_TYPE(switches::kEnableTouchEvents)
710 }, 710 },
711 #if defined(OS_CHROMEOS) 711 #if defined(OS_CHROMEOS)
712 { 712 {
713 "enable-background-loader",
714 IDS_ENABLE_BACKLOADER_NAME,
715 IDS_ENABLE_BACKLOADER_DESCRIPTION,
716 kOsCrOS,
717 SINGLE_VALUE_TYPE(switches::kEnableBackgroundLoader)
718 },
719 {
713 "enable-bezel-touch", 720 "enable-bezel-touch",
714 IDS_ENABLE_BEZEL_TOUCH_NAME, 721 IDS_ENABLE_BEZEL_TOUCH_NAME,
715 IDS_ENABLE_BEZEL_TOUCH_DESCRIPTION, 722 IDS_ENABLE_BEZEL_TOUCH_DESCRIPTION,
716 kOsCrOS, 723 kOsCrOS,
717 SINGLE_VALUE_TYPE(switches::kEnableBezelTouch) 724 SINGLE_VALUE_TYPE(switches::kEnableBezelTouch)
718 }, 725 },
719 { 726 {
720 "no-discard-tabs", 727 "no-discard-tabs",
721 IDS_FLAGS_NO_DISCARD_TABS_NAME, 728 IDS_FLAGS_NO_DISCARD_TABS_NAME,
722 IDS_FLAGS_NO_DISCARD_TABS_DESCRIPTION, 729 IDS_FLAGS_NO_DISCARD_TABS_DESCRIPTION,
(...skipping 638 matching lines...) Expand 10 before | Expand all | Expand 10 after
1361 } 1368 }
1362 1369
1363 const Experiment* GetExperiments(size_t* count) { 1370 const Experiment* GetExperiments(size_t* count) {
1364 *count = num_experiments; 1371 *count = num_experiments;
1365 return experiments; 1372 return experiments;
1366 } 1373 }
1367 1374
1368 } // namespace testing 1375 } // namespace testing
1369 1376
1370 } // namespace about_flags 1377 } // namespace about_flags
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698