1 // Copyright 2019 The Chromium 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 DEVICE_VR_ANDROID_ARCORE_ARCORE_SDK_H_
6 #define DEVICE_VR_ANDROID_ARCORE_ARCORE_SDK_H_
7 
8 #include "third_party/arcore-android-sdk/src/libraries/include/arcore_c_api.h"
9 
10 /// Sets ARCore to comply with incognito mode in Google Chrome and Chromium.
11 /// When called before calling Resume(), it will minimize the amount of logging
12 /// done by ARCore for this ArSession.
13 ///
14 /// @param[in] session - the ARCore session.
15 void ArSession_enableIncognitoMode_private(ArSession* session);
16 
17 #endif  // DEVICE_VR_ANDROID_ARCORE_ARCORE_SDK_H_
18