Index: tools/SkBitmapRegionDecoder.cpp |
diff --git a/tools/SkBitmapRegionDecoderInterface.cpp b/tools/SkBitmapRegionDecoder.cpp |
similarity index 88% |
rename from tools/SkBitmapRegionDecoderInterface.cpp |
rename to tools/SkBitmapRegionDecoder.cpp |
index d009b27f3a3dd5cbc160a1a23906557878248de0..5944c1ab40b5a86e536806d8bf80998d47acf8e2 100644 |
--- a/tools/SkBitmapRegionDecoderInterface.cpp |
+++ b/tools/SkBitmapRegionDecoder.cpp |
@@ -7,20 +7,20 @@ |
#include "SkBitmapRegionCanvas.h" |
#include "SkBitmapRegionCodec.h" |
-#include "SkBitmapRegionDecoderInterface.h" |
+#include "SkBitmapRegionDecoder.h" |
#include "SkBitmapRegionSampler.h" |
#include "SkAndroidCodec.h" |
#include "SkCodec.h" |
#include "SkCodecPriv.h" |
#include "SkImageDecoder.h" |
-SkBitmapRegionDecoderInterface* SkBitmapRegionDecoderInterface::CreateBitmapRegionDecoder( |
+SkBitmapRegionDecoder* SkBitmapRegionDecoder::Create( |
SkData* data, Strategy strategy) { |
- return SkBitmapRegionDecoderInterface::CreateBitmapRegionDecoder(new SkMemoryStream(data), |
+ return SkBitmapRegionDecoder::Create(new SkMemoryStream(data), |
strategy); |
} |
-SkBitmapRegionDecoderInterface* SkBitmapRegionDecoderInterface::CreateBitmapRegionDecoder( |
+SkBitmapRegionDecoder* SkBitmapRegionDecoder::Create( |
SkStreamRewindable* stream, Strategy strategy) { |
SkAutoTDelete<SkStreamRewindable> streamDeleter(stream); |
switch (strategy) { |