Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1325)

Unified Diff: tests/DataRefTest.cpp

Issue 1173173007: remove dead guarded code for legacy SkData proc (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/core/SkData.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/DataRefTest.cpp
diff --git a/tests/DataRefTest.cpp b/tests/DataRefTest.cpp
index 9fcbeb0502d80f226fd9001f1e0064bee5ab4e2f..8f06a1892e827b4b63016308c923ff4e8844469a 100644
--- a/tests/DataRefTest.cpp
+++ b/tests/DataRefTest.cpp
@@ -149,14 +149,6 @@ static void delete_int_proc(const void* ptr, void* context) {
delete[] data;
}
-#ifdef SK_SUPPORT_LEGACY_DATARELEASEPROC_PARAMS
-static void legacy_delete_int_proc(const void* ptr, size_t size, void* context) {
- int* data = (int*)ptr;
- SkASSERT(context == gGlobal);
- delete[] data;
-}
-#endif
-
static void assert_len(skiatest::Reporter* reporter, SkData* ref, size_t len) {
REPORTER_ASSERT(reporter, ref->size() == len);
}
@@ -221,10 +213,6 @@ DEF_TEST(Data, reporter) {
SkAutoTUnref<SkData> r2(SkData::NewWithProc(new int[N], N*sizeof(int),
delete_int_proc, gGlobal));
SkAutoTUnref<SkData> r3(SkData::NewSubset(r1, 7, 6));
-#ifdef SK_SUPPORT_LEGACY_DATARELEASEPROC_PARAMS
- SkAutoTUnref<SkData> r4(SkData::NewWithProc(new int[N], N*sizeof(int),
- legacy_delete_int_proc, gGlobal));
-#endif
assert_len(reporter, r0, 0);
assert_len(reporter, r1, strlen(str));
« no previous file with comments | « src/core/SkData.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698