Home | History | Annotate | Download | only in switches
      1 // Copyright (c) 2013 The Chromium OS Authors. All rights reserved.
      2 // Use of this source code is governed by a BSD-style license that can be
      3 // found in the LICENSE file.
      4 
      5 #ifndef SWITCHES_CHROME_SWITCHES_H_
      6 #define SWITCHES_CHROME_SWITCHES_H_
      7 
      8 // This file defines switches that are used both by Chrome and login_manager.
      9 
     10 namespace chromeos {
     11 namespace switches {
     12 
     13 // Sentinel switches for policy injected flags.
     14 const char kPolicySwitchesBegin[] = "policy-switches-begin";
     15 const char kPolicySwitchesEnd[] = "policy-switches-end";
     16 
     17 // Flag passed to the browser if the system is running in dev-mode.
     18 const char kSystemInDevMode[] = "system-developer-mode";
     19 
     20 }  // namespace switches
     21 }  // namespace chromeos
     22 
     23 #endif  // SWITCHES_CHROME_SWITCHES_H_
     24