OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2014 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 ScriptPromiseProperties_h | |
6 #define ScriptPromiseProperties_h | |
7 | |
8 // See ScriptPromiseProperty.h | |
9 #define SCRIPT_PROMISE_PROPERTIES(P, ...) \ | |
haraken
2014/07/03 02:43:20
Can we put this into V8HiddenValue.h, instead of a
| |
10 P(Ready ## __VA_ARGS__) | |
11 | |
12 #endif // ScriptPromiseProperties_h | |
OLD | NEW |