| Index: webkit/tools/test_shell/text_input_controller.h
|
| ===================================================================
|
| --- webkit/tools/test_shell/text_input_controller.h (revision 22886)
|
| +++ webkit/tools/test_shell/text_input_controller.h (working copy)
|
| @@ -14,9 +14,11 @@
|
| #include "webkit/glue/cpp_bound_class.h"
|
|
|
| class TestShell;
|
| -class WebView;
|
| -class WebTextInput;
|
|
|
| +namespace WebKit {
|
| +class WebFrame;
|
| +}
|
| +
|
| class TextInputController : public CppBoundClass {
|
| public:
|
| TextInputController(TestShell* shell);
|
| @@ -37,11 +39,9 @@
|
| void makeAttributedString(const CppArgumentList& args, CppVariant* result);
|
|
|
| private:
|
| - static WebTextInput* GetTextInput();
|
| + // Returns the test shell's main WebFrame.
|
| + static WebKit::WebFrame* GetMainFrame();
|
|
|
| - // Returns the test shell's webview.
|
| - static WebView* webview();
|
| -
|
| // Non-owning pointer. The LayoutTestController is owned by the host.
|
| static TestShell* shell_;
|
| };
|
|
|