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

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

Issue 11038021: Implement Chrome Extension TabCapture API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address comments, add command line flag Created 8 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 | 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 715 matching lines...) Expand 10 before | Expand all | Expand 10 after
726 kOsCrOS, 726 kOsCrOS,
727 SINGLE_VALUE_TYPE(switches::kEnableWebkitTextSubpixelPositioning) 727 SINGLE_VALUE_TYPE(switches::kEnableWebkitTextSubpixelPositioning)
728 }, 728 },
729 { 729 {
730 "enable-touch-events", 730 "enable-touch-events",
731 IDS_ENABLE_TOUCH_EVENTS_NAME, 731 IDS_ENABLE_TOUCH_EVENTS_NAME,
732 IDS_ENABLE_TOUCH_EVENTS_DESCRIPTION, 732 IDS_ENABLE_TOUCH_EVENTS_DESCRIPTION,
733 kOsWin | kOsMac | kOsLinux, 733 kOsWin | kOsMac | kOsLinux,
734 SINGLE_VALUE_TYPE(switches::kEnableTouchEvents) 734 SINGLE_VALUE_TYPE(switches::kEnableTouchEvents)
735 }, 735 },
736 {
737 "enable-tab-capture",
738 IDS_ENABLE_TAB_CAPTURE_NAME,
739 IDS_ENABLE_TAB_CAPTURE_DESCRIPTION,
740 kOsWin | kOsMac | kOsLinux,
741 SINGLE_VALUE_TYPE(switches::kEnableTabCapture)
742 },
736 #if defined(OS_CHROMEOS) 743 #if defined(OS_CHROMEOS)
737 { 744 {
738 "enable-background-loader", 745 "enable-background-loader",
739 IDS_ENABLE_BACKLOADER_NAME, 746 IDS_ENABLE_BACKLOADER_NAME,
740 IDS_ENABLE_BACKLOADER_DESCRIPTION, 747 IDS_ENABLE_BACKLOADER_DESCRIPTION,
741 kOsCrOS, 748 kOsCrOS,
742 SINGLE_VALUE_TYPE(switches::kEnableBackgroundLoader) 749 SINGLE_VALUE_TYPE(switches::kEnableBackgroundLoader)
743 }, 750 },
744 { 751 {
745 "enable-bezel-touch", 752 "enable-bezel-touch",
(...skipping 645 matching lines...) Expand 10 before | Expand all | Expand 10 after
1391 } 1398 }
1392 1399
1393 const Experiment* GetExperiments(size_t* count) { 1400 const Experiment* GetExperiments(size_t* count) {
1394 *count = num_experiments; 1401 *count = num_experiments;
1395 return experiments; 1402 return experiments;
1396 } 1403 }
1397 1404
1398 } // namespace testing 1405 } // namespace testing
1399 1406
1400 } // namespace about_flags 1407 } // namespace about_flags
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698