1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef SANDBOX_LINUX_BPF_DSL_ERRORCODE_H__
6 #define SANDBOX_LINUX_BPF_DSL_ERRORCODE_H__
8 #include "base/macros.h"
9 #include "sandbox/sandbox_export.h"
14 // TODO(mdempsky): Find a proper home for ERR_{MIN,MAX}_ERRNO and
15 // remove this header.
16 class SANDBOX_EXPORT ErrorCode
{
21 // MIPS only supports errno up to 1133
24 // TODO(markus): Android only supports errno up to 255
25 // (crbug.com/181647).
31 DISALLOW_IMPLICIT_CONSTRUCTORS(ErrorCode
);
34 } // namespace bpf_dsl
35 } // namespace sandbox
37 #endif // SANDBOX_LINUX_BPF_DSL_ERRORCODE_H__