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

Side by Side Diff: src/images/SkImageDecoder_wbmp.cpp

Issue 23453031: Rewrite SkTRegistry to take any trivially-copyable type. (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Created 7 years, 3 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 1
2 /* 2 /*
3 * Copyright 2006 The Android Open Source Project 3 * Copyright 2006 The Android Open Source Project
4 * 4 *
5 * Use of this source code is governed by a BSD-style license that can be 5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file. 6 * found in the LICENSE file.
7 */ 7 */
8 8
9 9
10 #include "SkImageDecoder.h" 10 #include "SkImageDecoder.h"
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after
164 } 164 }
165 165
166 static SkImageDecoder::Format get_format_wbmp(SkStream* stream) { 166 static SkImageDecoder::Format get_format_wbmp(SkStream* stream) {
167 wbmp_head head; 167 wbmp_head head;
168 if (head.init(stream)) { 168 if (head.init(stream)) {
169 return SkImageDecoder::kWBMP_Format; 169 return SkImageDecoder::kWBMP_Format;
170 } 170 }
171 return SkImageDecoder::kUnknown_Format; 171 return SkImageDecoder::kUnknown_Format;
172 } 172 }
173 173
174 static SkTRegistry<SkImageDecoder*, SkStream*> gReg(sk_wbmp_dfactory); 174 static SkTRegistry<SkImageDecoder*(*)(SkStream*)> gReg(sk_wbmp_dfactory);
175 static SkTRegistry<SkImageDecoder::Format, SkStream*> gFormatReg(get_format_wbmp ); 175 static SkTRegistry<SkImageDecoder::Format(*)(SkStream*)> gFormatReg(get_format_w bmp);
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698