[BlackBerry] Remove unused ChromeClientBlackBerry::platformCompositingWindow(), platf...
authorleo.yang@torchmobile.com.cn <leo.yang@torchmobile.com.cn@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Fri, 24 Feb 2012 03:11:20 +0000 (03:11 +0000)
committerleo.yang@torchmobile.com.cn <leo.yang@torchmobile.com.cn@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Fri, 24 Feb 2012 03:11:20 +0000 (03:11 +0000)
https://bugs.webkit.org/show_bug.cgi?id=78681

Reviewed by Antonio Gomes.

* Api/WebPageClient.h:
* WebCoreSupport/ChromeClientBlackBerry.cpp:
(WebCore):
* WebCoreSupport/ChromeClientBlackBerry.h:
(ChromeClientBlackBerry):

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@108717 268f45cc-cd09-0410-ab3c-d52691b4dbfc

Source/WebKit/blackberry/Api/WebPageClient.h
Source/WebKit/blackberry/ChangeLog
Source/WebKit/blackberry/WebCoreSupport/ChromeClientBlackBerry.cpp
Source/WebKit/blackberry/WebCoreSupport/ChromeClientBlackBerry.h

index 02839c0..74b735c 100644 (file)
@@ -158,7 +158,6 @@ public:
     virtual void setPageTitle(const unsigned short* title, unsigned titleLength) = 0;
 
     virtual Platform::Graphics::Window* window() const = 0;
-    virtual Platform::Graphics::Window* compositingWindow() const = 0;
 
     virtual void notifyContentRendered(const Platform::IntRect&) = 0;
     virtual void notifyScreenRotated() = 0;
index a91767a..1a74338 100644 (file)
@@ -1,5 +1,18 @@
 2012-02-23  Leo Yang  <leo.yang@torchmobile.com.cn>
 
+        [BlackBerry] Remove unused ChromeClientBlackBerry::platformCompositingWindow(), platformWindow() and WebPageClient::compositingWindow()
+        https://bugs.webkit.org/show_bug.cgi?id=78681
+
+        Reviewed by Antonio Gomes.
+
+        * Api/WebPageClient.h:
+        * WebCoreSupport/ChromeClientBlackBerry.cpp:
+        (WebCore):
+        * WebCoreSupport/ChromeClientBlackBerry.h:
+        (ChromeClientBlackBerry):
+
+2012-02-23  Leo Yang  <leo.yang@torchmobile.com.cn>
+
         [BlackBerry] Upstream GLES2Context.{h, cpp}
         https://bugs.webkit.org/show_bug.cgi?id=79196
 
index d7a3429..b12f49b 100644 (file)
@@ -832,14 +832,4 @@ bool ChromeClientBlackBerry::allowsAcceleratedCompositing() const
 }
 #endif
 
-void* ChromeClientBlackBerry::platformWindow() const
-{
-    return m_webPagePrivate->m_client->window();
-}
-
-void* ChromeClientBlackBerry::platformCompositingWindow() const
-{
-    return m_webPagePrivate->m_client->compositingWindow();
-}
-
 } // namespace WebCore
index 76a715a..99c8b60 100644 (file)
@@ -148,9 +148,6 @@ public:
     virtual bool allowsAcceleratedCompositing() const;
 #endif
 
-    virtual void* platformWindow() const;
-    virtual void* platformCompositingWindow() const;
-
     BlackBerry::WebKit::WebPagePrivate* webPagePrivate() const { return m_webPagePrivate; }
 
 private: