blob: d58810bc471e8b646e666cd0ae66fc433f99ac24 [file] [log] [blame]
Xiaohui Chena8bced82015-02-27 10:35:26 -08001// 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
7namespace 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.
12const char kDevFeaturesChromeRemoteDebuggingFlagPath[] =
13 "/etc/chrome_remote_debugging_on";
14
Peter Qiud05ef2b2015-03-30 09:34:09 -070015const char kDeviceCoredumpUploadFlagPath[] =
16 "/var/lib/crash_reporter/device_coredump_upload_allowed";
17
Ben Chanaf125862017-02-08 23:11:18 -080018const char kDebugfsGroup[] = "debugfs-access";
19
Xiaohui Chena8bced82015-02-27 10:35:26 -080020} // namespace debugd