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

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

Issue 1123143004: Add a flag for enabling Chrome Web Store Gallery widget app (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 5 years, 7 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
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 2416 matching lines...) Expand 10 before | Expand all | Expand 10 after
2427 SINGLE_VALUE_TYPE(autofill::switches::kEnableAccessorySuggestionView) 2427 SINGLE_VALUE_TYPE(autofill::switches::kEnableAccessorySuggestionView)
2428 }, 2428 },
2429 #endif // defined(OS_ANDROID) 2429 #endif // defined(OS_ANDROID)
2430 { 2430 {
2431 "disable-new-video-renderer", 2431 "disable-new-video-renderer",
2432 IDS_FLAGS_DISABLE_NEW_VIDEO_RENDERER_NAME, 2432 IDS_FLAGS_DISABLE_NEW_VIDEO_RENDERER_NAME,
2433 IDS_FLAGS_DISABLE_NEW_VIDEO_RENDERER_DESCRIPTION, 2433 IDS_FLAGS_DISABLE_NEW_VIDEO_RENDERER_DESCRIPTION,
2434 kOsAll, 2434 kOsAll,
2435 SINGLE_VALUE_TYPE(switches::kDisableNewVideoRenderer) 2435 SINGLE_VALUE_TYPE(switches::kDisableNewVideoRenderer)
2436 }, 2436 },
2437 #if defined(OS_CHROMEOS)
2438 {
2439 "enable-printer-app-search",
2440 IDS_FLAGS_PRINTER_PROVIDER_SEARCH_APP_NAME,
2441 IDS_FLAGS_PRINTER_PROVIDER_SEARCH_APP_DESCRIPTION,
2442 kOsCrOS,
2443 SINGLE_VALUE_TYPE(chromeos::switches::kEnablePrinterAppSearch)
2444 },
2445 #endif // OS_CHROMEOS
2437 // Temporary flag to ease the transition to standard-compliant scrollTop 2446 // Temporary flag to ease the transition to standard-compliant scrollTop
2438 // behavior. Will be removed shortly after http://crbug.com/157855 ships. 2447 // behavior. Will be removed shortly after http://crbug.com/157855 ships.
2439 { 2448 {
2440 "scroll-top-left-interop", 2449 "scroll-top-left-interop",
2441 IDS_FLAGS_SCROLL_TOP_LEFT_INTEROP_NAME, 2450 IDS_FLAGS_SCROLL_TOP_LEFT_INTEROP_NAME,
2442 IDS_FLAGS_SCROLL_TOP_LEFT_INTEROP_DESCRIPTION, 2451 IDS_FLAGS_SCROLL_TOP_LEFT_INTEROP_DESCRIPTION,
2443 kOsAll, 2452 kOsAll,
2444 ENABLE_DISABLE_VALUE_TYPE_AND_VALUE( 2453 ENABLE_DISABLE_VALUE_TYPE_AND_VALUE(
2445 switches::kEnableBlinkFeatures, "ScrollTopLeftInterop", 2454 switches::kEnableBlinkFeatures, "ScrollTopLeftInterop",
2446 switches::kDisableBlinkFeatures, "ScrollTopLeftInterop") 2455 switches::kDisableBlinkFeatures, "ScrollTopLeftInterop")
(...skipping 579 matching lines...) Expand 10 before | Expand all | Expand 10 after
3026 } 3035 }
3027 3036
3028 const Experiment* GetExperiments(size_t* count) { 3037 const Experiment* GetExperiments(size_t* count) {
3029 *count = num_experiments; 3038 *count = num_experiments;
3030 return experiments; 3039 return experiments;
3031 } 3040 }
3032 3041
3033 } // namespace testing 3042 } // namespace testing
3034 3043
3035 } // namespace about_flags 3044 } // namespace about_flags
OLDNEW
« chrome/app/chromeos_strings.grdp ('K') | « chrome/app/chromeos_strings.grdp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698