mirror of
https://github.com/google/sandboxed-api.git
synced 2024-03-22 13:11:30 +08:00
Internal cleanup migrating StatusOr.
PiperOrigin-RevId: 329304527 Change-Id: Id6c141272df54c4e165829d690f9f5b2e9ee90cc
This commit is contained in:
parent
cfac8eb2d9
commit
1c833d6f25
|
@ -803,6 +803,7 @@ cc_test(
|
|||
":testing",
|
||||
"//sandboxed_api/sandbox2/util:bpf_helper",
|
||||
"//sandboxed_api/util:status_matchers",
|
||||
"//sandboxed_api/util:statusor",
|
||||
"@com_google_absl//absl/memory",
|
||||
"@com_google_absl//absl/status",
|
||||
"@com_google_absl//absl/strings",
|
||||
|
|
|
@ -21,6 +21,7 @@
|
|||
#include <cerrno>
|
||||
|
||||
#include "absl/memory/memory.h"
|
||||
#include "sandboxed_api/util/statusor.h"
|
||||
#include "absl/strings/str_cat.h"
|
||||
#include "sandboxed_api/sandbox2/util.h"
|
||||
#include "sandboxed_api/sandbox2/util/strerror.h"
|
||||
|
|
|
@ -29,6 +29,7 @@ cc_library(
|
|||
":filtering",
|
||||
"//sandboxed_api/sandbox2:comms",
|
||||
"//sandboxed_api/sandbox2/util:fileops",
|
||||
"//sandboxed_api/util:statusor",
|
||||
"@com_google_absl//absl/memory",
|
||||
"@com_google_absl//absl/strings",
|
||||
"@com_google_glog//:glog",
|
||||
|
|
|
@ -26,6 +26,7 @@
|
|||
|
||||
#include <glog/logging.h>
|
||||
#include "absl/memory/memory.h"
|
||||
#include "sandboxed_api/util/statusor.h"
|
||||
#include "sandboxed_api/sandbox2/util/fileops.h"
|
||||
|
||||
namespace sandbox2 {
|
||||
|
|
|
@ -15,6 +15,7 @@
|
|||
#include "sandboxed_api/sandbox2/policybuilder.h"
|
||||
|
||||
#include <asm/ioctls.h> // For TCGETS
|
||||
|
||||
#if defined(__x86_64__)
|
||||
#include <asm/prctl.h>
|
||||
#endif
|
||||
|
@ -34,6 +35,7 @@
|
|||
#include <utility>
|
||||
|
||||
#include "absl/memory/memory.h"
|
||||
#include "sandboxed_api/util/statusor.h"
|
||||
#include "absl/strings/escaping.h"
|
||||
#include "absl/strings/match.h"
|
||||
#include "sandboxed_api/sandbox2/namespace.h"
|
||||
|
|
|
@ -24,6 +24,7 @@
|
|||
#include "gmock/gmock.h"
|
||||
#include "gtest/gtest.h"
|
||||
#include "absl/memory/memory.h"
|
||||
#include "sandboxed_api/util/statusor.h"
|
||||
#include "absl/strings/match.h"
|
||||
#include "absl/strings/str_cat.h"
|
||||
#include "absl/strings/str_split.h"
|
||||
|
|
|
@ -21,6 +21,7 @@
|
|||
#include <string>
|
||||
|
||||
#include "absl/memory/memory.h"
|
||||
#include "sandboxed_api/util/statusor.h"
|
||||
#include "absl/time/time.h"
|
||||
#include "sandboxed_api/sandbox2/monitor.h"
|
||||
#include "sandboxed_api/sandbox2/result.h"
|
||||
|
|
|
@ -15,6 +15,7 @@
|
|||
#include "sandboxed_api/sandbox2/util/maps_parser.h"
|
||||
|
||||
#include "absl/status/status.h"
|
||||
#include "sandboxed_api/util/statusor.h"
|
||||
#include "absl/strings/str_split.h"
|
||||
|
||||
namespace sandbox2 {
|
||||
|
|
|
@ -22,6 +22,7 @@
|
|||
#include <cstdlib>
|
||||
#include <vector>
|
||||
|
||||
#include "sandboxed_api/util/statusor.h"
|
||||
#include "absl/strings/str_cat.h"
|
||||
#include "sandboxed_api/sandbox2/util/fileops.h"
|
||||
#include "sandboxed_api/sandbox2/util/strerror.h"
|
||||
|
|
Loading…
Reference in New Issue
Block a user