Loosen up heuristics for detecting account creation forms.
[chromium-blink-merge.git] / content / shell / webkit_test_runner_bindings.h
blobd9eac862542d2c3fbd65d6aea34c457b19fd415e
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"
12 namespace content {
14 class WebKitTestRunnerBindings : public v8::Extension {
15 public:
16 WebKitTestRunnerBindings();
17 virtual ~WebKitTestRunnerBindings();
19 // v8::Extension implementation.
20 virtual v8::Handle<v8::FunctionTemplate>
21 GetNativeFunction(v8::Handle<v8::String> name) OVERRIDE;
23 private:
24 DISALLOW_COPY_AND_ASSIGN(WebKitTestRunnerBindings);
27 } // namespace content
29 #endif // CONTENT_SHELL_WEBKIT_TEST_RUNNER_BINDINGS_H_