blob: 374fd351a82c4ce23bcc8054bc4ed844db8dc66b [file] [log] [blame]
// Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_VR_MODEL_CAPTURING_STATE_MODEL_H_
#define CHROME_BROWSER_VR_MODEL_CAPTURING_STATE_MODEL_H_
namespace vr {
struct CapturingStateModel {
bool audio_capture_enabled = false;
bool video_capture_enabled = false;
bool screen_capture_enabled = false;
bool location_access_enabled = false;
bool bluetooth_connected = false;
};
} // namespace vr
#endif // CHROME_BROWSER_VR_MODEL_CAPTURING_STATE_MODEL_H_