blob: 367c960b6e60a1b6b3e6009c9602ff34a5486cc2 [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_
#include "chrome/browser/vr/vr_base_export.h"
namespace vr {
struct VR_BASE_EXPORT 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;
};
typedef bool CapturingStateModel::*CapturingStateModelMemberPtr;
} // namespace vr
#endif // CHROME_BROWSER_VR_MODEL_CAPTURING_STATE_MODEL_H_