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

Side by Side Diff: third_party/WebKit/Source/platform/v8_inspector/Allocator.h

Issue 2295913003: [DevTools] Switch from platform/v8_inspector to v8/v8-inspector.h. (Closed)
Patch Set: rebase 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
OLDNEW
(Empty)
1 // Copyright 2016 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.
4
5 #ifndef Allocator_h
6 #define 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 public:
19
20 #define V8_INSPECTOR_DISALLOW_COPY(ClassName) \
21 private: \
22 ClassName(const ClassName&) = delete; \
23 ClassName& operator=(const ClassName&) = delete
24
25 // Macro that returns a compile time constant with the length of an array, but g ives an error if passed a non-array.
26 template<typename T, std::size_t Size> char (&ArrayLengthHelperFunction(T (&)[Si ze]))[Size];
27 // GCC needs some help to deduce a 0 length array.
28 #if defined(__GNUC__)
29 template<typename T> char (&ArrayLengthHelperFunction(T (&)[0]))[0];
30 #endif
31 #define V8_INSPECTOR_ARRAY_LENGTH(array) sizeof(::ArrayLengthHelperFunction(arra y))
32
33 #endif // !defined(Allocator_h)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698