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

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

Issue 1290013003: This patch removes all files, directories, flags, and code related to SurfaceWorker, which is now d… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: One more deletion. Created 5 years, 4 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 | « chrome/app/generated_resources.grd ('k') | chrome/browser/chrome_content_browser_client.cc » ('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 1411 matching lines...) Expand 10 before | Expand all | Expand 10 after
1422 {"enable-iframe-based-signin", 1422 {"enable-iframe-based-signin",
1423 IDS_FLAGS_ENABLE_IFRAME_BASED_SIGNIN_NAME, 1423 IDS_FLAGS_ENABLE_IFRAME_BASED_SIGNIN_NAME,
1424 IDS_FLAGS_ENABLE_IFRAME_BASED_SIGNIN_DESCRIPTION, 1424 IDS_FLAGS_ENABLE_IFRAME_BASED_SIGNIN_DESCRIPTION,
1425 kOsMac | kOsWin | kOsLinux, 1425 kOsMac | kOsWin | kOsLinux,
1426 SINGLE_VALUE_TYPE(switches::kEnableIframeBasedSignin)}, 1426 SINGLE_VALUE_TYPE(switches::kEnableIframeBasedSignin)},
1427 {"enable-google-profile-info", 1427 {"enable-google-profile-info",
1428 IDS_FLAGS_ENABLE_GOOGLE_PROFILE_INFO_NAME, 1428 IDS_FLAGS_ENABLE_GOOGLE_PROFILE_INFO_NAME,
1429 IDS_FLAGS_ENABLE_GOOGLE_PROFILE_INFO_DESCRIPTION, 1429 IDS_FLAGS_ENABLE_GOOGLE_PROFILE_INFO_DESCRIPTION,
1430 kOsMac | kOsWin | kOsLinux, 1430 kOsMac | kOsWin | kOsLinux,
1431 SINGLE_VALUE_TYPE(switches::kGoogleProfileInfo)}, 1431 SINGLE_VALUE_TYPE(switches::kGoogleProfileInfo)},
1432 #if defined(ENABLE_EXTENSIONS)
1433 {"enable-surface-worker",
1434 IDS_FLAGS_ENABLE_SURFACE_WORKER_NAME,
1435 IDS_FLAGS_ENABLE_SURFACE_WORKER_DESCRIPTION,
1436 kOsDesktop,
1437 SINGLE_VALUE_TYPE(extensions::switches::kEnableSurfaceWorker)},
1438 #endif
1439 #if defined(ENABLE_APP_LIST) 1432 #if defined(ENABLE_APP_LIST)
1440 {"reset-app-list-install-state", 1433 {"reset-app-list-install-state",
1441 IDS_FLAGS_RESET_APP_LIST_INSTALL_STATE_NAME, 1434 IDS_FLAGS_RESET_APP_LIST_INSTALL_STATE_NAME,
1442 IDS_FLAGS_RESET_APP_LIST_INSTALL_STATE_DESCRIPTION, 1435 IDS_FLAGS_RESET_APP_LIST_INSTALL_STATE_DESCRIPTION,
1443 kOsMac | kOsWin | kOsLinux, 1436 kOsMac | kOsWin | kOsLinux,
1444 SINGLE_VALUE_TYPE(app_list::switches::kResetAppListInstallState)}, 1437 SINGLE_VALUE_TYPE(app_list::switches::kResetAppListInstallState)},
1445 {"disable-drive-apps-in-app-list", 1438 {"disable-drive-apps-in-app-list",
1446 IDS_FLAGS_DISABLE_DRIVE_APPS_IN_APP_LIST_NAME, 1439 IDS_FLAGS_DISABLE_DRIVE_APPS_IN_APP_LIST_NAME,
1447 IDS_FLAGS_DISABLE_DRIVE_APPS_IN_APP_LIST_DESCRIPTION, 1440 IDS_FLAGS_DISABLE_DRIVE_APPS_IN_APP_LIST_DESCRIPTION,
1448 kOsCrOS, 1441 kOsCrOS,
(...skipping 1331 matching lines...) Expand 10 before | Expand all | Expand 10 after
2780 } 2773 }
2781 2774
2782 const Experiment* GetExperiments(size_t* count) { 2775 const Experiment* GetExperiments(size_t* count) {
2783 *count = num_experiments; 2776 *count = num_experiments;
2784 return experiments; 2777 return experiments;
2785 } 2778 }
2786 2779
2787 } // namespace testing 2780 } // namespace testing
2788 2781
2789 } // namespace about_flags 2782 } // namespace about_flags
OLDNEW
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | chrome/browser/chrome_content_browser_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698