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 578 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
589 // proceeds in the background. | 589 // proceeds in the background. |
590 const char kEnableStaleWhileRevalidate[] = "enable-stale-while-revalidate"; | 590 const char kEnableStaleWhileRevalidate[] = "enable-stale-while-revalidate"; |
591 | 591 |
592 // Enables the suggestions service. | 592 // Enables the suggestions service. |
593 const char kEnableSuggestionsService[] = "enable-suggestions-service"; | 593 const char kEnableSuggestionsService[] = "enable-suggestions-service"; |
594 | 594 |
595 // Enables the supervised user host blacklist. | 595 // Enables the supervised user host blacklist. |
596 const char kEnableSupervisedUserBlacklist[] = | 596 const char kEnableSupervisedUserBlacklist[] = |
597 "enable-supervised-user-blacklist"; | 597 "enable-supervised-user-blacklist"; |
598 | 598 |
| 599 // Enables the supervised user managed bookmarks folder. |
| 600 const char kEnableSupervisedUserManagedBookmarksFolder[] = |
| 601 "enable-supervised-user-managed-bookmarks-folder"; |
| 602 |
599 // Enables SafeSites filtering for supervised users. | 603 // Enables SafeSites filtering for supervised users. |
600 const char kEnableSupervisedUserSafeSites[] = | 604 const char kEnableSupervisedUserSafeSites[] = |
601 "enable-supervised-user-safesites"; | 605 "enable-supervised-user-safesites"; |
602 | 606 |
603 // Enables synced articles. | 607 // Enables synced articles. |
604 const char kEnableSyncArticles[] = "enable-sync-articles"; | 608 const char kEnableSyncArticles[] = "enable-sync-articles"; |
605 | 609 |
606 // Enables user control over muting tab audio from the tab strip. | 610 // Enables user control over muting tab audio from the tab strip. |
607 const char kEnableTabAudioMuting[] = "enable-tab-audio-muting"; | 611 const char kEnableTabAudioMuting[] = "enable-tab-audio-muting"; |
608 | 612 |
(...skipping 792 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1401 | 1405 |
1402 // ----------------------------------------------------------------------------- | 1406 // ----------------------------------------------------------------------------- |
1403 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1407 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1404 // | 1408 // |
1405 // You were going to just dump your switches here, weren't you? Instead, please | 1409 // You were going to just dump your switches here, weren't you? Instead, please |
1406 // put them in alphabetical order above, or in order inside the appropriate | 1410 // put them in alphabetical order above, or in order inside the appropriate |
1407 // ifdef at the bottom. The order should match the header. | 1411 // ifdef at the bottom. The order should match the header. |
1408 // ----------------------------------------------------------------------------- | 1412 // ----------------------------------------------------------------------------- |
1409 | 1413 |
1410 } // namespace switches | 1414 } // namespace switches |
OLD | NEW |