Changeset 121151 in webkit


Ignore:
Timestamp:
Jun 25, 2012 6:16:24 AM (12 years ago)
Author:
commit-queue@webkit.org
Message:

[WK2][Qt][EFL] Move LayerBackingStore into common directory
https://bugs.webkit.org/show_bug.cgi?id=89838

Patch by YoungTaeck Song <youngtaeck.song@samsung.com> on 2012-06-25
Reviewed by Noam Rosenthal.

Move LayerBackingStore into 'Source/WebKit2/UIProcess/texmap' to be used by both Qt and Efl.

  • Target.pri:
  • UIProcess/texmap/LayerBackingStore.cpp: Renamed from Source/WebKit2/UIProcess/qt/LayerBackingStore.cpp.

(WebKit):
(WebKit::LayerBackingStoreTile::swapBuffers):
(WebKit::LayerBackingStoreTile::setBackBuffer):
(WebKit::LayerBackingStore::createTile):
(WebKit::LayerBackingStore::removeTile):
(WebKit::LayerBackingStore::updateTile):
(WebKit::LayerBackingStore::texture):
(WebKit::LayerBackingStore::paintToTextureMapper):
(WebKit::LayerBackingStore::commitTileOperations):

  • UIProcess/texmap/LayerBackingStore.h: Renamed from Source/WebKit2/UIProcess/qt/LayerBackingStore.h.

(WebKit):
(LayerBackingStoreTile):
(WebKit::LayerBackingStoreTile::LayerBackingStoreTile):
(WebKit::LayerBackingStoreTile::scale):
(LayerBackingStore):
(WebKit::LayerBackingStore::create):
(WebKit::LayerBackingStore::LayerBackingStore):

Location:
trunk/Source/WebKit2
Files:
1 added
3 edited
2 moved

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r121143 r121151  
     12012-06-25  YoungTaeck Song  <youngtaeck.song@samsung.com>
     2
     3        [WK2][Qt][EFL] Move LayerBackingStore into common directory
     4        https://bugs.webkit.org/show_bug.cgi?id=89838
     5
     6        Reviewed by Noam Rosenthal.
     7
     8        Move LayerBackingStore into 'Source/WebKit2/UIProcess/texmap' to be used by both Qt and Efl.
     9
     10        * Target.pri:
     11        * UIProcess/texmap/LayerBackingStore.cpp: Renamed from Source/WebKit2/UIProcess/qt/LayerBackingStore.cpp.
     12        (WebKit):
     13        (WebKit::LayerBackingStoreTile::swapBuffers):
     14        (WebKit::LayerBackingStoreTile::setBackBuffer):
     15        (WebKit::LayerBackingStore::createTile):
     16        (WebKit::LayerBackingStore::removeTile):
     17        (WebKit::LayerBackingStore::updateTile):
     18        (WebKit::LayerBackingStore::texture):
     19        (WebKit::LayerBackingStore::paintToTextureMapper):
     20        (WebKit::LayerBackingStore::commitTileOperations):
     21        * UIProcess/texmap/LayerBackingStore.h: Renamed from Source/WebKit2/UIProcess/qt/LayerBackingStore.h.
     22        (WebKit):
     23        (LayerBackingStoreTile):
     24        (WebKit::LayerBackingStoreTile::LayerBackingStoreTile):
     25        (WebKit::LayerBackingStoreTile::scale):
     26        (LayerBackingStore):
     27        (WebKit::LayerBackingStore::create):
     28        (WebKit::LayerBackingStore::LayerBackingStore):
     29
    1302012-06-25  Carlos Garcia Campos  <cgarcia@igalia.com>
    231
  • trunk/Source/WebKit2/Target.pri

    r120963 r121151  
    274274    UIProcess/WebResourceLoadClient.h \
    275275    UIProcess/WebUIClient.h \
    276     UIProcess/qt/LayerBackingStore.h \
    277276    UIProcess/qt/QtWebContext.h \
    278277    UIProcess/qt/QtWebPageEventHandler.h \
     
    295294    UIProcess/qt/WebGeolocationProviderQt.h \
    296295    UIProcess/qt/WebPopupMenuProxyQt.h \
     296    UIProcess/texmap/LayerBackingStore.h \
    297297    WebProcess/ApplicationCache/WebApplicationCacheManager.h \
    298298    WebProcess/Authentication/AuthenticationManager.h \
     
    625625    UIProcess/WebUIClient.cpp \
    626626    UIProcess/qt/QtWebContext.cpp \
    627     UIProcess/qt/LayerBackingStore.cpp \
    628627    UIProcess/qt/QtWebPageEventHandler.cpp \
    629628    UIProcess/qt/QtGestureRecognizer.cpp \
     
    650649    UIProcess/qt/WebPreferencesQt.cpp \
    651650    UIProcess/qt/QtWebIconDatabaseClient.cpp \
     651    UIProcess/texmap/LayerBackingStore.cpp \
    652652    WebProcess/ApplicationCache/WebApplicationCacheManager.cpp \
    653653    WebProcess/Authentication/AuthenticationManager.cpp \
  • trunk/Source/WebKit2/WebKit2.pri

    r113026 r121151  
    3434    $$SOURCE_DIR/UIProcess/Plugins \
    3535    $$SOURCE_DIR/UIProcess/qt \
     36    $$SOURCE_DIR/UIProcess/texmap \
    3637    $$SOURCE_DIR/WebProcess \
    3738    $$SOURCE_DIR/WebProcess/ApplicationCache \
Note: See TracChangeset for help on using the changeset viewer.