| Index: Source/bindings/core/v8/inspector/V8JavaScriptCallFrame.h
|
| diff --git a/Source/bindings/core/v8/inspector/V8JavaScriptCallFrame.h b/Source/bindings/core/v8/inspector/V8JavaScriptCallFrame.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..a2aec1f00a7e423cb7591eeac8feaa9622bf8d44
|
| --- /dev/null
|
| +++ b/Source/bindings/core/v8/inspector/V8JavaScriptCallFrame.h
|
| @@ -0,0 +1,24 @@
|
| +// Copyright 2015 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#ifndef V8JavaScriptCallFrame_h
|
| +#define V8JavaScriptCallFrame_h
|
| +
|
| +#include "core/inspector/JavaScriptCallFrame.h"
|
| +
|
| +namespace blink {
|
| +
|
| +class V8JavaScriptCallFrame {
|
| +public:
|
| + static v8::Local<v8::FunctionTemplate> createWrapperTemplate(v8::Isolate*);
|
| + static v8::Local<v8::Object> wrap(v8::Local<v8::FunctionTemplate> constructorTemplate, v8::Local<v8::Context>, PassRefPtr<JavaScriptCallFrame>);
|
| + static JavaScriptCallFrame* unwrap(v8::Local<v8::Object>);
|
| +
|
| +private:
|
| + static v8::Local<v8::String> hiddenPropertyName(v8::Isolate*);
|
| +};
|
| +
|
| +} // namespace blink
|
| +
|
| +#endif // V8JavaScriptCallFrame_h
|
|
|