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

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

Issue 374803003: Video Player: Add a flag to support chromecast (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 5 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') | chromeos/chromeos_switches.h » ('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 <iterator> 7 #include <iterator>
8 #include <map> 8 #include <map>
9 #include <set> 9 #include <set>
10 #include <utility> 10 #include <utility>
(...skipping 1021 matching lines...) Expand 10 before | Expand all | Expand 10 after
1032 SINGLE_VALUE_TYPE(chromeos::switches::kDisableBootAnimation), 1032 SINGLE_VALUE_TYPE(chromeos::switches::kDisableBootAnimation),
1033 }, 1033 },
1034 { 1034 {
1035 "enable-new-gallery", 1035 "enable-new-gallery",
1036 IDS_FLAGS_FILE_MANAGER_ENABLE_NEW_GALLERY_NAME, 1036 IDS_FLAGS_FILE_MANAGER_ENABLE_NEW_GALLERY_NAME,
1037 IDS_FLAGS_FILE_MANAGER_ENABLE_NEW_GALLERY_DESCRIPTION, 1037 IDS_FLAGS_FILE_MANAGER_ENABLE_NEW_GALLERY_DESCRIPTION,
1038 kOsCrOS, 1038 kOsCrOS,
1039 MULTI_VALUE_TYPE(kEnableFileManagerNewGalleryChoices) 1039 MULTI_VALUE_TYPE(kEnableFileManagerNewGalleryChoices)
1040 }, 1040 },
1041 { 1041 {
1042 "enable-video-player-chromecast-support",
1043 IDS_FLAGS_ENABLE_VIDEO_PLAYER_CHROMECAST_SUPPORT_NAME,
1044 IDS_FLAGS_ENABLE_VIDEO_PLAYER_CHROMECAST_SUPPORT_DESCRIPTION,
1045 kOsCrOS,
1046 SINGLE_VALUE_TYPE(chromeos::switches::kEnableVideoPlayerChromecastSupport)
1047 },
1048 {
1042 "disable-quickoffice-component-app", 1049 "disable-quickoffice-component-app",
1043 IDS_FLAGS_DISABLE_QUICKOFFICE_COMPONENT_APP_NAME, 1050 IDS_FLAGS_DISABLE_QUICKOFFICE_COMPONENT_APP_NAME,
1044 IDS_FLAGS_DISABLE_QUICKOFFICE_COMPONENT_APP_DESCRIPTION, 1051 IDS_FLAGS_DISABLE_QUICKOFFICE_COMPONENT_APP_DESCRIPTION,
1045 kOsCrOS, 1052 kOsCrOS,
1046 SINGLE_VALUE_TYPE(chromeos::switches::kDisableQuickofficeComponentApp), 1053 SINGLE_VALUE_TYPE(chromeos::switches::kDisableQuickofficeComponentApp),
1047 }, 1054 },
1048 { 1055 {
1049 "disable-saml-signin", 1056 "disable-saml-signin",
1050 IDS_FLAGS_DISABLE_SAML_SIGNIN_NAME, 1057 IDS_FLAGS_DISABLE_SAML_SIGNIN_NAME,
1051 IDS_FLAGS_DISABLE_SAML_SIGNIN_DESCRIPTION, 1058 IDS_FLAGS_DISABLE_SAML_SIGNIN_DESCRIPTION,
(...skipping 1437 matching lines...) Expand 10 before | Expand all | Expand 10 after
2489 } 2496 }
2490 2497
2491 const Experiment* GetExperiments(size_t* count) { 2498 const Experiment* GetExperiments(size_t* count) {
2492 *count = num_experiments; 2499 *count = num_experiments;
2493 return experiments; 2500 return experiments;
2494 } 2501 }
2495 2502
2496 } // namespace testing 2503 } // namespace testing
2497 2504
2498 } // namespace about_flags 2505 } // namespace about_flags
OLDNEW
« no previous file with comments | « chrome/app/chromeos_strings.grdp ('k') | chromeos/chromeos_switches.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698