Changeset 109135 in webkit


Ignore:
Timestamp:
Feb 28, 2012 12:06:14 PM (12 years ago)
Author:
commit-queue@webkit.org
Message:

[BlackBerry] x86 build fix after cleaning up WebPage.cpp
https://bugs.webkit.org/show_bug.cgi?id=79814

Patch by Jacky Jiang <zhajiang@rim.com> on 2012-02-28
Reviewed by Antonio Gomes.

x86 build fix, keep WebPage::destroyWebPageCompositor() method where it
was which was outside of USE(ACCELERATED_COMPOSITING).

  • Api/WebPage.cpp:

(BlackBerry::WebKit::WebPage::destroyWebPageCompositor):
(WebKit):

Location:
trunk/Source/WebKit/blackberry
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/blackberry/Api/WebPage.cpp

    r109051 r109135  
    27822782}
    27832783
     2784void WebPage::destroyWebPageCompositor()
     2785{
     2786#if USE(ACCELERATED_COMPOSITING)
     2787    // Destroy the layer renderer in a sync command before we destroy the backing store,
     2788    // to flush any pending compositing messages on the compositing thread.
     2789    // The backing store is indirectly deleted by the 'detachFromParent' call below.
     2790    d->syncDestroyCompositorOnCompositingThread();
     2791#endif
     2792}
     2793
    27842794void WebPage::destroy()
    27852795{
     
    53375347}
    53385348
    5339 void WebPage::destroyWebPageCompositor()
    5340 {
    5341 #if USE(ACCELERATED_COMPOSITING)
    5342     // Destroy the layer renderer in a sync command before we destroy the backing store,
    5343     // to flush any pending compositing messages on the compositing thread.
    5344     // The backing store is indirectly deleted by the 'detachFromParent' call below.
    5345     d->syncDestroyCompositorOnCompositingThread();
    5346 #endif
    5347 }
    5348 
    53495349void WebPagePrivate::destroyLayerResources()
    53505350{
  • trunk/Source/WebKit/blackberry/ChangeLog

    r109123 r109135  
     12012-02-28  Jacky Jiang  <zhajiang@rim.com>
     2
     3        [BlackBerry] x86 build fix after cleaning up WebPage.cpp
     4        https://bugs.webkit.org/show_bug.cgi?id=79814
     5
     6        Reviewed by Antonio Gomes.
     7
     8        x86 build fix, keep WebPage::destroyWebPageCompositor() method where it
     9        was which was outside of USE(ACCELERATED_COMPOSITING).
     10
     11        * Api/WebPage.cpp:
     12        (BlackBerry::WebKit::WebPage::destroyWebPageCompositor):
     13        (WebKit):
     14
    1152012-02-28  Mike Fenton  <mifenton@rim.com>
    216
Note: See TracChangeset for help on using the changeset viewer.