Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(778)

Unified Diff: webkit/tools/test_shell/accessibility_controller.h

Issue 6296015: Remove eventSender, accessibilityController, plainText and (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/webkit/tools/test_shell
Patch Set: Created 9 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webkit/glue/context_menu_unittest.cc ('k') | webkit/tools/test_shell/accessibility_controller.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_
« no previous file with comments | « webkit/glue/context_menu_unittest.cc ('k') | webkit/tools/test_shell/accessibility_controller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698