summaryrefslogtreecommitdiffstats
path: root/Source/WebCore/Android.mk
diff options
context:
space:
mode:
authorChris Craik <ccraik@google.com>2012-04-03 16:12:40 -0700
committerChris Craik <ccraik@google.com>2012-04-04 13:11:49 -0700
commit594c6b805969c2673c84d1d1d1a3556ce376ac7a (patch)
treec79b67f77a4327de8c68a89c569a1dd0a4824da5 /Source/WebCore/Android.mk
parent4b0fde0e790db3b3f5a7a84fc77dc994f0a123c2 (diff)
downloadexternal_webkit-594c6b805969c2673c84d1d1d1a3556ce376ac7a.zip
external_webkit-594c6b805969c2673c84d1d1d1a3556ce376ac7a.tar.gz
external_webkit-594c6b805969c2673c84d1d1d1a3556ce376ac7a.tar.bz2
Rename several classes
BaseTile,BaseTileTexture -> Tile,TileTexture Used in layers other than the base LayerGroup -> Surface Renamed to convey that it is a member of the SurfaceCollection, and that the layers grouped inside are painted together (if at all) DualTiledTexture -> SurfaceBacking Better conveys that this is the raster backing for a surface that can paint. It may be implemented with two tiled textures for now, but that isn't as important as its relationship to the surface. TiledTexture -> TileGrid Renamed to make it more clear that it was a container of tiles, and to be less similar to TileTexture Change-Id: I843f8603a2080cfe5a7313ba1c2eff10620f8aa2
Diffstat (limited to 'Source/WebCore/Android.mk')
-rw-r--r--Source/WebCore/Android.mk9
1 files changed, 5 insertions, 4 deletions
diff --git a/Source/WebCore/Android.mk b/Source/WebCore/Android.mk
index 6ddf965..de0aeab 100644
--- a/Source/WebCore/Android.mk
+++ b/Source/WebCore/Android.mk
@@ -636,8 +636,6 @@ LOCAL_SRC_FILES := $(LOCAL_SRC_FILES) \
platform/graphics/android/AndroidAnimation.cpp \
platform/graphics/android/BaseLayerAndroid.cpp \
platform/graphics/android/BaseRenderer.cpp \
- platform/graphics/android/BaseTile.cpp \
- platform/graphics/android/BaseTileTexture.cpp \
platform/graphics/android/BitmapAllocatorAndroid.cpp \
platform/graphics/android/CanvasLayer.cpp \
platform/graphics/android/CanvasTexture.cpp \
@@ -668,7 +666,6 @@ LOCAL_SRC_FILES := $(LOCAL_SRC_FILES) \
platform/graphics/android/InspectorCanvas.cpp \
platform/graphics/android/Layer.cpp \
platform/graphics/android/LayerAndroid.cpp \
- platform/graphics/android/LayerGroup.cpp \
platform/graphics/android/MediaLayer.cpp \
platform/graphics/android/MediaTexture.cpp \
platform/graphics/android/PaintTileOperation.cpp \
@@ -681,11 +678,15 @@ LOCAL_SRC_FILES := $(LOCAL_SRC_FILES) \
platform/graphics/android/ScrollableLayerAndroid.cpp \
platform/graphics/android/SharedBufferStream.cpp \
platform/graphics/android/ShaderProgram.cpp \
+ platform/graphics/android/Surface.cpp \
+ platform/graphics/android/SurfaceBacking.cpp \
platform/graphics/android/TextureInfo.cpp \
platform/graphics/android/TexturesGenerator.cpp \
+ platform/graphics/android/Tile.cpp \
+ platform/graphics/android/TileGrid.cpp \
+ platform/graphics/android/TileTexture.cpp \
platform/graphics/android/TilesManager.cpp \
platform/graphics/android/TilesProfiler.cpp \
- platform/graphics/android/TiledTexture.cpp \
platform/graphics/android/TransferQueue.cpp \
platform/graphics/android/SurfaceCollection.cpp \
platform/graphics/android/SurfaceCollectionManager.cpp \