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

Side by Side Diff: src/inspector/Allocator.h

Issue 2359533002: [inspector] replaced V8_INSPECTOR* macros with macros from base/macros.h (Closed)
Patch Set: Created 4 years, 3 months 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
« no previous file with comments | « no previous file | src/inspector/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2016 the V8 project 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.
4
5 #ifndef V8_INSPECTOR_ALLOCATOR_H_
6 #define V8_INSPECTOR_ALLOCATOR_H_
7
8 #include <cstddef>
9 #include <cstdint>
10
11 enum NotNullTagEnum { NotNullLiteral };
12
13 #define V8_INSPECTOR_DISALLOW_NEW() \
14 private: \
15 void* operator new(size_t) = delete; \
16 void* operator new(size_t, NotNullTagEnum, void*) = delete; \
17 void* operator new(size_t, void*) = delete; \
18 \
19 public:
20
21 #define V8_INSPECTOR_DISALLOW_COPY(ClassName) \
22 private: \
23 ClassName(const ClassName&) = delete; \
24 ClassName& operator=(const ClassName&) = delete
25
26 // Macro that returns a compile time constant with the length of an array, but
27 // gives an error if passed a non-array.
28 template <typename T, std::size_t Size>
29 char (&ArrayLengthHelperFunction(T (&)[Size]))[Size];
30 #define V8_INSPECTOR_ARRAY_LENGTH(array) \
31 sizeof(::ArrayLengthHelperFunction(array))
32
33 #endif // V8_INSPECTOR_ALLOCATOR_H_
OLDNEW
« no previous file with comments | « no previous file | src/inspector/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698