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

Unified Diff: src/codec/SkCodec_wbmp.h

Issue 1006583005: SkCodec: add wbmp class (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 years, 9 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
Index: src/codec/SkCodec_wbmp.h
diff --git a/src/codec/SkCodec_wbmp.h b/src/codec/SkCodec_wbmp.h
new file mode 100644
index 0000000000000000000000000000000000000000..127761720168746bc3a2360792046d388a584cbc
--- /dev/null
+++ b/src/codec/SkCodec_wbmp.h
@@ -0,0 +1,19 @@
+/*
+ * Copyright 2015 Google Inc.
+ *
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ */
+
+#ifndef SkCodec_wbmp_DEFINED
+#define SkCodec_wbmp_DEFINED
+
+class SkCodec;
+class SkStream;
+
+namespace SkWbmpCodec {
msarett 2015/03/26 12:37:35 What is the effect of declaring a namespace? I'm
scroggo 2015/03/26 14:37:57 Yes. It's mostly the same if all your methods are
hal.canary 2015/03/26 17:10:53 I find that namespace makes it more clear that thi
+bool IsWbmp(SkStream*);
+SkCodec* NewFromStream(SkStream*);
+};
+
+#endif // SkCodec_wbmp_DEFINED

Powered by Google App Engine
This is Rietveld 408576698