1 // Copyright (c) 2012 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.
5 #ifndef CONTENT_SHELL_WEBKIT_TEST_RUNNER_BINDINGS_H_
6 #define CONTENT_SHELL_WEBKIT_TEST_RUNNER_BINDINGS_H_
8 #include "base/basictypes.h"
9 #include "base/compiler_specific.h"
10 #include "v8/include/v8.h"
14 class WebKitTestRunnerBindings
: public v8::Extension
{
16 WebKitTestRunnerBindings();
17 virtual ~WebKitTestRunnerBindings();
19 // v8::Extension implementation.
20 virtual v8::Handle
<v8::FunctionTemplate
>
21 GetNativeFunction(v8::Handle
<v8::String
> name
) OVERRIDE
;
24 DISALLOW_COPY_AND_ASSIGN(WebKitTestRunnerBindings
);
27 } // namespace content
29 #endif // CONTENT_SHELL_WEBKIT_TEST_RUNNER_BINDINGS_H_