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