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

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

Issue 165063002: Update description of fullscreen-within-tab experiment in about:flags. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 10 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/generated_resources.grd ('k') | no next file » | 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 1946 matching lines...) Expand 10 before | Expand all | Expand 10 after
1957 #if defined(USE_AURA) || defined(OS_WIN) 1957 #if defined(USE_AURA) || defined(OS_WIN)
1958 { 1958 {
1959 "enable-save-password-bubble", 1959 "enable-save-password-bubble",
1960 IDS_FLAGS_ENABLE_PASSWORD_BUBBLE_NAME, 1960 IDS_FLAGS_ENABLE_PASSWORD_BUBBLE_NAME,
1961 IDS_FLAGS_ENABLE_PASSWORD_BUBBLE_DESCRIPTION, 1961 IDS_FLAGS_ENABLE_PASSWORD_BUBBLE_DESCRIPTION,
1962 kOsWin | kOsCrOS, 1962 kOsWin | kOsCrOS,
1963 SINGLE_VALUE_TYPE(switches::kEnableSavePasswordBubble) 1963 SINGLE_VALUE_TYPE(switches::kEnableSavePasswordBubble)
1964 }, 1964 },
1965 #endif 1965 #endif
1966 { 1966 {
1967 "embed-flash-fullscreen", 1967 "fullscreen-within-tab",
1968 IDS_FLAGS_EMBED_FLASH_FULLSCREEN_NAME, 1968 IDS_FLAGS_FULLSCREEN_WITHIN_TAB_NAME,
1969 IDS_FLAGS_EMBED_FLASH_FULLSCREEN_DESCRIPTION, 1969 IDS_FLAGS_FULLSCREEN_WITHIN_TAB_DESCRIPTION,
1970 kOsDesktop, 1970 kOsDesktop,
1971 SINGLE_VALUE_TYPE(switches::kEmbedFlashFullscreen) 1971 SINGLE_VALUE_TYPE(switches::kEmbedFlashFullscreen)
1972 }, 1972 },
1973 #if defined(USE_AURA) || defined(OS_WIN) 1973 #if defined(USE_AURA) || defined(OS_WIN)
1974 { 1974 {
1975 "enable-permissions-bubbles", 1975 "enable-permissions-bubbles",
1976 IDS_FLAGS_ENABLE_PERMISSIONS_BUBBLES_NAME, 1976 IDS_FLAGS_ENABLE_PERMISSIONS_BUBBLES_NAME,
1977 IDS_FLAGS_ENABLE_PERMISSIONS_BUBBLES_DESCRIPTION, 1977 IDS_FLAGS_ENABLE_PERMISSIONS_BUBBLES_DESCRIPTION,
1978 kOsCrOS | kOsWin, 1978 kOsCrOS | kOsWin,
1979 SINGLE_VALUE_TYPE(switches::kEnablePermissionsBubbles) 1979 SINGLE_VALUE_TYPE(switches::kEnablePermissionsBubbles)
(...skipping 533 matching lines...) Expand 10 before | Expand all | Expand 10 after
2513 } 2513 }
2514 2514
2515 const Experiment* GetExperiments(size_t* count) { 2515 const Experiment* GetExperiments(size_t* count) {
2516 *count = num_experiments; 2516 *count = num_experiments;
2517 return experiments; 2517 return experiments;
2518 } 2518 }
2519 2519
2520 } // namespace testing 2520 } // namespace testing
2521 2521
2522 } // namespace about_flags 2522 } // namespace about_flags
OLDNEW
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698