Index: Source/testing/runner/TextInputController.h |
diff --git a/Source/testing/runner/TextInputController.h b/Source/testing/runner/TextInputController.h |
index 864d0ed981b1105044978b97aea9cf7c317dcb5e..60ce66627be4dbbb8cb88c97d5287ccdb5695066 100644 |
--- a/Source/testing/runner/TextInputController.h |
+++ b/Source/testing/runner/TextInputController.h |
@@ -37,7 +37,7 @@ |
#include "CppBoundClass.h" |
-namespace WebKit { |
+namespace blink { |
class WebView; |
} |
@@ -47,7 +47,7 @@ class TextInputController : public CppBoundClass { |
public: |
TextInputController(); |
- void setWebView(WebKit::WebView* webView) { m_webView = webView; } |
+ void setWebView(blink::WebView* webView) { m_webView = webView; } |
void insertText(const CppArgumentList&, CppVariant*); |
void doCommand(const CppArgumentList&, CppVariant*); |
@@ -60,7 +60,7 @@ public: |
void setComposition(const CppArgumentList&, CppVariant*); |
private: |
- WebKit::WebView* m_webView; |
+ blink::WebView* m_webView; |
}; |
} |