Skip to content

Commit

Permalink
Add some missing includes (#4638)
Browse files Browse the repository at this point in the history
  • Loading branch information
tiziano88 authored Jan 10, 2024
1 parent 607c276 commit 1a95821
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions cc/client/client.cc
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@

#include <memory>
#include <string>
#include <utility>

#include "absl/status/statusor.h"
#include "absl/strings/string_view.h"
Expand Down
2 changes: 1 addition & 1 deletion cc/client/client_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@

#include <cstdint>
#include <memory>
#include <string>
#include <utility>

#include "absl/status/statusor.h"
Expand All @@ -35,7 +36,6 @@ namespace oak::client {
namespace {

using ::oak::crypto::EncryptionKeyProvider;
using ::oak::crypto::KeyPair;
using ::oak::crypto::ServerEncryptor;
using ::oak::crypto::v1::EncryptedRequest;
using ::oak::crypto::v1::EncryptedResponse;
Expand Down
2 changes: 2 additions & 0 deletions cc/crypto/hpke/recipient_context_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@
#include "cc/crypto/hpke/recipient_context.h"

#include <cstdint>
#include <string>
#include <vector>

#include "absl/status/statusor.h"
#include "cc/crypto/hpke/sender_context.h"
Expand Down
1 change: 1 addition & 0 deletions cc/crypto/hpke/sender_context.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
#include <cstdint>
#include <memory>
#include <string>
#include <utility>
#include <vector>

#include "absl/status/statusor.h"
Expand Down
1 change: 0 additions & 1 deletion cc/transport/grpc_streaming_transport.cc
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ using ::oak::crypto::v1::EncryptedRequest;
using ::oak::crypto::v1::EncryptedResponse;
using ::oak::session::v1::AttestationBundle;
using ::oak::session::v1::GetPublicKeyRequest;
using ::oak::session::v1::InvokeRequest;
using ::oak::session::v1::RequestWrapper;
using ::oak::session::v1::ResponseWrapper;
} // namespace
Expand Down

0 comments on commit 1a95821

Please sign in to comment.