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

Side by Side Diff: chrome/common/chrome_switches.cc

Issue 769153007: Managed bookmarks for supervised users (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: string change Created 5 years, 11 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
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/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
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 773 matching lines...) Expand 10 before | Expand all | Expand 10 after
1375 1379
1376 // ----------------------------------------------------------------------------- 1380 // -----------------------------------------------------------------------------
1377 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1381 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1378 // 1382 //
1379 // You were going to just dump your switches here, weren't you? Instead, please 1383 // You were going to just dump your switches here, weren't you? Instead, please
1380 // put them in alphabetical order above, or in order inside the appropriate 1384 // put them in alphabetical order above, or in order inside the appropriate
1381 // ifdef at the bottom. The order should match the header. 1385 // ifdef at the bottom. The order should match the header.
1382 // ----------------------------------------------------------------------------- 1386 // -----------------------------------------------------------------------------
1383 1387
1384 } // namespace switches 1388 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698