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

Unified Diff: src/core/SkMultiPictureDocumentPriv.h

Issue 2023593002: SkMultiPictureDocument & SkMultiPictureDocumentReader (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 4 years, 7 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/core/SkMultiPictureDocumentPriv.h
diff --git a/src/core/SkMultiPictureDocumentPriv.h b/src/core/SkMultiPictureDocumentPriv.h
new file mode 100644
index 0000000000000000000000000000000000000000..124dad7c6bcb56b799fd69796f8d92c98291d1c5
--- /dev/null
+++ b/src/core/SkMultiPictureDocumentPriv.h
@@ -0,0 +1,23 @@
+/*
+ * Copyright 2016 Google Inc.
+ *
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ */
+
+#ifndef SkMultiPictureDocumentPriv_DEFINED
+#define SkMultiPictureDocumentPriv_DEFINED
+
+#include "stdint.h"
+
+namespace SkMultiPictureDocumentProtocol {
+static constexpr char kMagic[] = "Skia Multi-Picture Doc\n\n";
+
+struct Entry {
+ uint64_t offset;
+ float sizeX;
+ float sizeY;
+};
+}
+
+#endif // SkMultiPictureDocumentPriv_DEFINED

Powered by Google App Engine
This is Rietveld 408576698