OLD | NEW |
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/common/chrome_switches.h" | 5 #include "chrome/common/chrome_switches.h" |
6 | 6 |
7 #include "base/base_switches.h" | 7 #include "base/base_switches.h" |
8 #include "base/command_line.h" | 8 #include "base/command_line.h" |
9 | 9 |
10 namespace switches { | 10 namespace switches { |
(...skipping 595 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
606 // proceeds in the background. | 606 // proceeds in the background. |
607 const char kEnableStaleWhileRevalidate[] = "enable-stale-while-revalidate"; | 607 const char kEnableStaleWhileRevalidate[] = "enable-stale-while-revalidate"; |
608 | 608 |
609 // Enables the suggestions service. | 609 // Enables the suggestions service. |
610 const char kEnableSuggestionsService[] = "enable-suggestions-service"; | 610 const char kEnableSuggestionsService[] = "enable-suggestions-service"; |
611 | 611 |
612 // Enables the supervised user host blacklist. | 612 // Enables the supervised user host blacklist. |
613 const char kEnableSupervisedUserBlacklist[] = | 613 const char kEnableSupervisedUserBlacklist[] = |
614 "enable-supervised-user-blacklist"; | 614 "enable-supervised-user-blacklist"; |
615 | 615 |
| 616 // Enables the supervised user managed bookmarks folder. |
| 617 const char kEnableSupervisedUserManagedBookmarksFolder[] = |
| 618 "enable-supervised-user-managed-bookmarks-folder"; |
| 619 |
616 // Enables SafeSites filtering for supervised users. | 620 // Enables SafeSites filtering for supervised users. |
617 const char kEnableSupervisedUserSafeSites[] = | 621 const char kEnableSupervisedUserSafeSites[] = |
618 "enable-supervised-user-safesites"; | 622 "enable-supervised-user-safesites"; |
619 | 623 |
620 // Enables synced articles. | 624 // Enables synced articles. |
621 const char kEnableSyncArticles[] = "enable-sync-articles"; | 625 const char kEnableSyncArticles[] = "enable-sync-articles"; |
622 | 626 |
623 // Enables user control over muting tab audio from the tab strip. | 627 // Enables user control over muting tab audio from the tab strip. |
624 const char kEnableTabAudioMuting[] = "enable-tab-audio-muting"; | 628 const char kEnableTabAudioMuting[] = "enable-tab-audio-muting"; |
625 | 629 |
(...skipping 795 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1421 | 1425 |
1422 // ----------------------------------------------------------------------------- | 1426 // ----------------------------------------------------------------------------- |
1423 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1427 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1424 // | 1428 // |
1425 // You were going to just dump your switches here, weren't you? Instead, please | 1429 // You were going to just dump your switches here, weren't you? Instead, please |
1426 // put them in alphabetical order above, or in order inside the appropriate | 1430 // put them in alphabetical order above, or in order inside the appropriate |
1427 // ifdef at the bottom. The order should match the header. | 1431 // ifdef at the bottom. The order should match the header. |
1428 // ----------------------------------------------------------------------------- | 1432 // ----------------------------------------------------------------------------- |
1429 | 1433 |
1430 } // namespace switches | 1434 } // namespace switches |
OLD | NEW |