| Index: Source/bindings/v8/BlinkInJSController.h
|
| diff --git a/Source/bindings/v8/BlinkInJSController.h b/Source/bindings/v8/BlinkInJSController.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..92a1dafcd6c658aa80b41c29a695ec49eecfa824
|
| --- /dev/null
|
| +++ b/Source/bindings/v8/BlinkInJSController.h
|
| @@ -0,0 +1,20 @@
|
| +// Copyright 2014 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 BlinkInJSController_h
|
| +#define BlinkInJSController_h
|
| +
|
| +#include "wtf/text/WTFString.h"
|
| +#include <v8.h>
|
| +
|
| +namespace WebCore {
|
| +
|
| +class BlinkInJSController {
|
| +public:
|
| + static v8::Handle<v8::Value> run(v8::Isolate*, String className, String functionName, v8::Handle<v8::Value> receiver, int argc, v8::Handle<v8::Value> argv[]);
|
| +};
|
| +
|
| +} // namespace WebCore
|
| +
|
| +#endif // V8BlinkInJSController_h
|
|
|