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

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

Issue 486903002: Moving app_view to extensions. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/browser/apps/app_view_browsertest.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 1465 matching lines...) Expand 10 before | Expand all | Expand 10 after
1476 IDS_FLAGS_ENABLE_APP_LIST_DESCRIPTION, 1476 IDS_FLAGS_ENABLE_APP_LIST_DESCRIPTION,
1477 kOsLinux, 1477 kOsLinux,
1478 SINGLE_VALUE_TYPE(switches::kEnableAppList) 1478 SINGLE_VALUE_TYPE(switches::kEnableAppList)
1479 }, 1479 },
1480 #endif 1480 #endif
1481 { 1481 {
1482 "enable-app-view", 1482 "enable-app-view",
1483 IDS_FLAGS_ENABLE_APP_VIEW_NAME, 1483 IDS_FLAGS_ENABLE_APP_VIEW_NAME,
1484 IDS_FLAGS_ENABLE_APP_VIEW_DESCRIPTION, 1484 IDS_FLAGS_ENABLE_APP_VIEW_DESCRIPTION,
1485 kOsAll, 1485 kOsAll,
1486 SINGLE_VALUE_TYPE(switches::kEnableAppView) 1486 SINGLE_VALUE_TYPE(extensions::switches::kEnableAppView)
1487 }, 1487 },
1488 { 1488 {
1489 "disable-app-list-app-info", 1489 "disable-app-list-app-info",
1490 IDS_FLAGS_DISABLE_APP_INFO_IN_APP_LIST, 1490 IDS_FLAGS_DISABLE_APP_INFO_IN_APP_LIST,
1491 IDS_FLAGS_DISABLE_APP_INFO_IN_APP_LIST_DESCRIPTION, 1491 IDS_FLAGS_DISABLE_APP_INFO_IN_APP_LIST_DESCRIPTION,
1492 kOsLinux | kOsWin | kOsCrOS, 1492 kOsLinux | kOsWin | kOsCrOS,
1493 SINGLE_VALUE_TYPE(app_list::switches::kDisableAppInfo) 1493 SINGLE_VALUE_TYPE(app_list::switches::kDisableAppInfo)
1494 }, 1494 },
1495 { 1495 {
1496 "enable-drive-apps-in-app-list", 1496 "enable-drive-apps-in-app-list",
(...skipping 989 matching lines...) Expand 10 before | Expand all | Expand 10 after
2486 } 2486 }
2487 2487
2488 const Experiment* GetExperiments(size_t* count) { 2488 const Experiment* GetExperiments(size_t* count) {
2489 *count = num_experiments; 2489 *count = num_experiments;
2490 return experiments; 2490 return experiments;
2491 } 2491 }
2492 2492
2493 } // namespace testing 2493 } // namespace testing
2494 2494
2495 } // namespace about_flags 2495 } // namespace about_flags
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/apps/app_view_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698