Merge pull request #23870 from ashithasantosh/update_namespace

Update namespace to avoid collision.
pull/23877/head
ashithasantosh 4 years ago committed by GitHub
commit 2cc9cf79fe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 12
      src/core/lib/security/authorization/mock_cel/activation.h
  2. 12
      src/core/lib/security/authorization/mock_cel/cel_value.h

@ -21,10 +21,8 @@
#include "src/core/lib/security/authorization/mock_cel/cel_value.h"
namespace google {
namespace api {
namespace expr {
namespace runtime {
namespace grpc_core {
namespace mock_cel {
// Base class for an activation. This is a temporary stub implementation of CEL
// APIs. Once gRPC imports the CEL library, this class will be removed.
@ -53,9 +51,7 @@ class Activation : public BaseActivation {
void InsertValue(absl::string_view name, const CelValue& value) {}
};
} // namespace runtime
} // namespace expr
} // namespace api
} // namespace google
} // namespace mock_cel
} // namespace grpc_core
#endif // GRPC_CORE_LIB_SECURITY_AUTHORIZATION_MOCK_CEL_ACTIVATION_H

@ -34,10 +34,8 @@
#include "absl/strings/string_view.h"
namespace google {
namespace api {
namespace expr {
namespace runtime {
namespace grpc_core {
namespace mock_cel {
// Break cyclic depdendencies for container types.
class CelMap;
@ -75,9 +73,7 @@ class CelValue {
explicit CelValue(T value) {}
};
} // namespace runtime
} // namespace expr
} // namespace api
} // namespace google
} // namespace mock_cel
} // namespace grpc_core
#endif // GRPC_CORE_LIB_SECURITY_AUTHORIZATION_MOCK_CEL_CEL_VALUE_H

Loading…
Cancel
Save