| Index: webkit/tools/test_shell/accessibility_controller.h
|
| diff --git a/webkit/tools/test_shell/accessibility_controller.h b/webkit/tools/test_shell/accessibility_controller.h
|
| deleted file mode 100644
|
| index 6948c2d617906ea1a16426cd87c2611e263947b0..0000000000000000000000000000000000000000
|
| --- a/webkit/tools/test_shell/accessibility_controller.h
|
| +++ /dev/null
|
| @@ -1,50 +0,0 @@
|
| -// Copyright (c) 2006-2009 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 WEBKIT_TOOLS_TEST_SHELL_ACCESSIBILITY_CONTROLLER_H_
|
| -#define WEBKIT_TOOLS_TEST_SHELL_ACCESSIBILITY_CONTROLLER_H_
|
| -
|
| -#include "webkit/glue/cpp_bound_class.h"
|
| -#include "webkit/tools/test_shell/accessibility_ui_element.h"
|
| -
|
| -namespace WebKit {
|
| -class WebAccessibilityObject;
|
| -class WebFrame;
|
| -}
|
| -
|
| -class AccessibilityUIElement;
|
| -class AccessibilityUIElementList;
|
| -class TestShell;
|
| -
|
| -class AccessibilityController : public CppBoundClass {
|
| - public:
|
| - explicit AccessibilityController(TestShell* shell);
|
| -
|
| - // shadow to include accessibility initialization.
|
| - void BindToJavascript(WebKit::WebFrame* frame, const std::string& classname);
|
| - void Reset();
|
| -
|
| - void SetFocusedElement(const WebKit::WebAccessibilityObject& focused_element);
|
| - AccessibilityUIElement* GetFocusedElement();
|
| - AccessibilityUIElement* GetRootElement();
|
| -
|
| - private:
|
| - // Bound methods and properties
|
| - void LogFocusEventsCallback(const CppArgumentList& args, CppVariant* result);
|
| - void LogScrollingStartEventsCallback(
|
| - const CppArgumentList& args, CppVariant* result);
|
| - void FallbackCallback(const CppArgumentList& args, CppVariant* result);
|
| -
|
| - void FocusedElementGetterCallback(CppVariant* result);
|
| - void RootElementGetterCallback(CppVariant* result);
|
| -
|
| - WebKit::WebAccessibilityObject focused_element_;
|
| - WebKit::WebAccessibilityObject root_element_;
|
| -
|
| - AccessibilityUIElementList elements_;
|
| -
|
| - TestShell* shell_;
|
| -};
|
| -
|
| -#endif // WEBKIT_TOOLS_TEST_SHELL_ACCESSIBILITY_CONTROLLER_H_
|
|
|