Xiaohui Chen | a8bced8 | 2015-02-27 10:35:26 -0800 | [diff] [blame] | 1 | // Copyright 2015 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 | #include "debugd/src/constants.h" |
| 6 | |
| 7 | namespace debugd { |
| 8 | |
| 9 | // For security purposes the path needs to be on rootfs. This prevents the |
| 10 | // possibility of enabling Chrome remote debugging without being in dev mode and |
| 11 | // having removed rootfs verification. |
| 12 | const char kDevFeaturesChromeRemoteDebuggingFlagPath[] = |
| 13 | "/etc/chrome_remote_debugging_on"; |
| 14 | |
Peter Qiu | d05ef2b | 2015-03-30 09:34:09 -0700 | [diff] [blame] | 15 | const char kDeviceCoredumpUploadFlagPath[] = |
| 16 | "/var/lib/crash_reporter/device_coredump_upload_allowed"; |
| 17 | |
Ben Chan | af12586 | 2017-02-08 23:11:18 -0800 | [diff] [blame] | 18 | const char kDebugfsGroup[] = "debugfs-access"; |
| 19 | |
Xiaohui Chen | a8bced8 | 2015-02-27 10:35:26 -0800 | [diff] [blame] | 20 | } // namespace debugd |