Upstream version 5.34.104.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / core / page / Chrome.cpp
old mode 100755 (executable)
new mode 100644 (file)
index 09d3e22..dc4774a
@@ -80,11 +80,6 @@ void Chrome::scroll(const IntSize& scrollDelta, const IntRect& rectToScroll, con
     InspectorInstrumentation::didScroll(m_page);
 }
 
-IntPoint Chrome::screenToRootView(const IntPoint& point) const
-{
-    return m_client->screenToRootView(point);
-}
-
 IntRect Chrome::rootViewToScreen(const IntRect& rect) const
 {
     return m_client->rootViewToScreen(rect);
@@ -100,11 +95,6 @@ void Chrome::contentsSizeChanged(Frame* frame, const IntSize& size) const
     m_client->contentsSizeChanged(frame, size);
 }
 
-void Chrome::layoutUpdated(Frame* frame) const
-{
-    m_client->layoutUpdated(frame);
-}
-
 void Chrome::setWindowRect(const FloatRect& rect) const
 {
     m_client->setWindowRect(rect);
@@ -125,19 +115,14 @@ void Chrome::focus() const
     m_client->focus();
 }
 
-void Chrome::unfocus() const
-{
-    m_client->unfocus();
-}
-
-bool Chrome::canTakeFocus(FocusDirection direction) const
+bool Chrome::canTakeFocus(FocusType type) const
 {
-    return m_client->canTakeFocus(direction);
+    return m_client->canTakeFocus(type);
 }
 
-void Chrome::takeFocus(FocusDirection direction) const
+void Chrome::takeFocus(FocusType type) const
 {
-    m_client->takeFocus(direction);
+    m_client->takeFocus(type);
 }
 
 void Chrome::focusedNodeChanged(Node* node) const