| Index: mojo/public/cpp/bindings/lib/validate_params.h
|
| diff --git a/mojo/public/cpp/bindings/lib/validate_params.h b/mojo/public/cpp/bindings/lib/validate_params.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..5f14e612ecd16e133c2d1abf210683f4001a083f
|
| --- /dev/null
|
| +++ b/mojo/public/cpp/bindings/lib/validate_params.h
|
| @@ -0,0 +1,34 @@
|
| +// Copyright 2014 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#ifndef MOJO_PUBLIC_CPP_BINDINGS_LIB_VALIDATE_PARAMS_H_
|
| +#define MOJO_PUBLIC_CPP_BINDINGS_LIB_VALIDATE_PARAMS_H_
|
| +
|
| +namespace mojo {
|
| +namespace internal {
|
| +
|
| +// Array type information needed for valdiation.
|
| +template <uint32_t in_expected_num_elements,
|
| + bool in_element_is_nullable,
|
| + typename InElementValidateParams>
|
| +class ArrayValidateParams {
|
| + public:
|
| + // Validation information for elements. It is either another specialization of
|
| + // ArrayValidateParams (if elements are arrays) or NoValidateParams.
|
| + typedef InElementValidateParams ElementValidateParams;
|
| +
|
| + // If |expected_num_elements| is not 0, the array is expected to have exactly
|
| + // that number of elements.
|
| + static const uint32_t expected_num_elements = in_expected_num_elements;
|
| + // Whether the elements are nullable.
|
| + static const bool element_is_nullable = in_element_is_nullable;
|
| +};
|
| +
|
| +// NoValidateParams is used to indicate the end of an ArrayValidateParams chain.
|
| +class NoValidateParams {};
|
| +
|
| +} // namespace internal
|
| +} // namespace mojo
|
| +
|
| +#endif // MOJO_PUBLIC_CPP_BINDINGS_LIB_VALIDATE_PARAMS_H_
|
|
|