From 7b31deaed8597d9d3d604f3be0793432bbf13e85 Mon Sep 17 00:00:00 2001 From: Sandboxed API Team Date: Thu, 12 Aug 2021 11:00:18 -0700 Subject: [PATCH] Delete deprecated `sapi::Sandbox::IsActive` and its remaining call sites. PiperOrigin-RevId: 390412024 Change-Id: Iab3853b3c40dd4e9b0ff31532e8c41c2583ebc4e --- sandboxed_api/sandbox.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/sandboxed_api/sandbox.h b/sandboxed_api/sandbox.h index 3ff1e36..10d8364 100644 --- a/sandboxed_api/sandbox.h +++ b/sandboxed_api/sandbox.h @@ -47,8 +47,6 @@ class Sandbox { // Initializes a new sandboxing session. absl::Status Init(); - ABSL_DEPRECATED("Use sapi::Sandbox::is_active() instead") - bool IsActive() const { return this->is_active(); } // Returns whether the current sandboxing session is active. bool is_active() const;