Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(55)

Side by Side Diff: sandbox/linux/services/namespace_utils.h

Issue 1468803002: Switch to static_assert. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@assert1
Patch Set: win Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef SANDBOX_LINUX_SERVICES_NAMESPACE_UTILS_H_ 5 #ifndef SANDBOX_LINUX_SERVICES_NAMESPACE_UTILS_H_
6 #define SANDBOX_LINUX_SERVICES_NAMESPACE_UTILS_H_ 6 #define SANDBOX_LINUX_SERVICES_NAMESPACE_UTILS_H_
7 7
8 #include <sys/types.h> 8 #include <sys/types.h>
9 9
10 #include "base/compiler_specific.h" 10 #include "base/compiler_specific.h"
11 #include "base/macros.h" 11 #include "base/macros.h"
12 #include "base/template_util.h" 12 #include "base/template_util.h"
13 #include "sandbox/sandbox_export.h" 13 #include "sandbox/sandbox_export.h"
14 14
15 namespace sandbox { 15 namespace sandbox {
16 16
17 // Utility functions for using Linux namepaces. 17 // Utility functions for using Linux namepaces.
18 class SANDBOX_EXPORT NamespaceUtils { 18 class SANDBOX_EXPORT NamespaceUtils {
19 public: 19 public:
20 COMPILE_ASSERT((base::is_same<uid_t, gid_t>::value), UidAndGidAreSameType); 20 static_assert((base::is_same<uid_t, gid_t>::value), "UidAndGidAreSameType");
21 // generic_id_t can be used for either uid_t or gid_t. 21 // generic_id_t can be used for either uid_t or gid_t.
22 typedef uid_t generic_id_t; 22 typedef uid_t generic_id_t;
23 23
24 // Write a uid or gid mapping from |id| to |id| in |map_file|. This function 24 // Write a uid or gid mapping from |id| to |id| in |map_file|. This function
25 // is async-signal-safe. 25 // is async-signal-safe.
26 static bool WriteToIdMapFile(const char* map_file, 26 static bool WriteToIdMapFile(const char* map_file,
27 generic_id_t id) WARN_UNUSED_RESULT; 27 generic_id_t id) WARN_UNUSED_RESULT;
28 28
29 // Returns true if unprivileged namespaces of type |type| is supported 29 // Returns true if unprivileged namespaces of type |type| is supported
30 // (meaning that both CLONE_NEWUSER and type are are supported). |type| must 30 // (meaning that both CLONE_NEWUSER and type are are supported). |type| must
(...skipping 13 matching lines...) Expand all
44 // KernelSupportsDenySetgroups. This function is async-signal-safe. 44 // KernelSupportsDenySetgroups. This function is async-signal-safe.
45 static bool DenySetgroups() WARN_UNUSED_RESULT; 45 static bool DenySetgroups() WARN_UNUSED_RESULT;
46 46
47 private: 47 private:
48 DISALLOW_IMPLICIT_CONSTRUCTORS(NamespaceUtils); 48 DISALLOW_IMPLICIT_CONSTRUCTORS(NamespaceUtils);
49 }; 49 };
50 50
51 } // namespace sandbox 51 } // namespace sandbox
52 52
53 #endif // SANDBOX_LINUX_SERVICES_NAMESPACE_UTILS_H_ 53 #endif // SANDBOX_LINUX_SERVICES_NAMESPACE_UTILS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698