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

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

Issue 2843263002: Remove media-remoting-encrypted flag. (Closed)
Patch Set: Created 3 years, 8 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
« no previous file with comments | « no previous file | chrome/browser/flag_descriptions.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 2482 matching lines...) Expand 10 before | Expand all | Expand 10 after
2493 FEATURE_VALUE_TYPE(chrome::android::kWebPaymentsModifiers)}, 2493 FEATURE_VALUE_TYPE(chrome::android::kWebPaymentsModifiers)},
2494 #endif // !defined(OS_ANDROID) 2494 #endif // !defined(OS_ANDROID)
2495 {"cross-process-guests", 2495 {"cross-process-guests",
2496 flag_descriptions::kCrossProcessGuestViewIsolationName, 2496 flag_descriptions::kCrossProcessGuestViewIsolationName,
2497 flag_descriptions::kCrossProcessGuestViewIsolationDescription, kOsDesktop, 2497 flag_descriptions::kCrossProcessGuestViewIsolationDescription, kOsDesktop,
2498 FEATURE_VALUE_TYPE(features::kGuestViewCrossProcessFrames)}, 2498 FEATURE_VALUE_TYPE(features::kGuestViewCrossProcessFrames)},
2499 #if !defined(OS_ANDROID) && !defined(OS_IOS) 2499 #if !defined(OS_ANDROID) && !defined(OS_IOS)
2500 {"media-remoting", flag_descriptions::kMediaRemotingName, 2500 {"media-remoting", flag_descriptions::kMediaRemotingName,
2501 flag_descriptions::kMediaRemotingDescription, kOsDesktop, 2501 flag_descriptions::kMediaRemotingDescription, kOsDesktop,
2502 FEATURE_VALUE_TYPE(features::kMediaRemoting)}, 2502 FEATURE_VALUE_TYPE(features::kMediaRemoting)},
2503 {"media-remoting-encrypted", flag_descriptions::kMediaRemotingEncryptedName,
2504 flag_descriptions::kMediaRemotingEncryptedDescription, kOsDesktop,
2505 FEATURE_VALUE_TYPE(features::kMediaRemotingEncrypted)},
2506 #endif 2503 #endif
2507 #if defined(OS_ANDROID) 2504 #if defined(OS_ANDROID)
2508 {"video-fullscreen-orientation-lock", 2505 {"video-fullscreen-orientation-lock",
2509 flag_descriptions::kVideoFullscreenOrientationLockName, 2506 flag_descriptions::kVideoFullscreenOrientationLockName,
2510 flag_descriptions::kVideoFullscreenOrientationLockDescription, kOsAndroid, 2507 flag_descriptions::kVideoFullscreenOrientationLockDescription, kOsAndroid,
2511 FEATURE_VALUE_TYPE(media::kVideoFullscreenOrientationLock)}, 2508 FEATURE_VALUE_TYPE(media::kVideoFullscreenOrientationLock)},
2512 #endif 2509 #endif
2513 {"enable-nostate-prefetch", flag_descriptions::kNostatePrefetch, 2510 {"enable-nostate-prefetch", flag_descriptions::kNostatePrefetch,
2514 flag_descriptions::kNostatePrefetchDescription, kOsAll, 2511 flag_descriptions::kNostatePrefetchDescription, kOsAll,
2515 FEATURE_WITH_PARAMS_VALUE_TYPE(prerender::kNoStatePrefetchFeature, 2512 FEATURE_WITH_PARAMS_VALUE_TYPE(prerender::kNoStatePrefetchFeature,
(...skipping 452 matching lines...) Expand 10 before | Expand all | Expand 10 after
2968 const base::HistogramBase::Sample kBadSwitchFormatHistogramId = 0; 2965 const base::HistogramBase::Sample kBadSwitchFormatHistogramId = 0;
2969 2966
2970 const FeatureEntry* GetFeatureEntries(size_t* count) { 2967 const FeatureEntry* GetFeatureEntries(size_t* count) {
2971 *count = arraysize(kFeatureEntries); 2968 *count = arraysize(kFeatureEntries);
2972 return kFeatureEntries; 2969 return kFeatureEntries;
2973 } 2970 }
2974 2971
2975 } // namespace testing 2972 } // namespace testing
2976 2973
2977 } // namespace about_flags 2974 } // namespace about_flags
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/flag_descriptions.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698