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

Unified Diff: third_party/WebKit/Source/platform/image-decoders/SegmentReader.h

Issue 1812273003: Eliminate copies of encoded image data (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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: third_party/WebKit/Source/platform/image-decoders/SegmentReader.h
diff --git a/third_party/WebKit/Source/platform/image-decoders/SegmentReader.h b/third_party/WebKit/Source/platform/image-decoders/SegmentReader.h
new file mode 100644
index 0000000000000000000000000000000000000000..3fc18fa4db11c91fe468b2c8d8ebd449b0572bce
--- /dev/null
+++ b/third_party/WebKit/Source/platform/image-decoders/SegmentReader.h
@@ -0,0 +1,37 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef SegmentReader_h
+#define SegmentReader_h
+
+#include "third_party/skia/include/core/SkData.h"
+#include "wtf/Noncopyable.h"
+#include "wtf/PassRefPtr.h"
+#include "wtf/RefCounted.h"
+
+namespace blink {
+
+// Interface that looks like SharedBuffer. Used by ImageDecoders to use various
+// sources of input including:
+// - SharedBuffer
+// - for when the caller already has a SharedBuffer
+// - SkData
+// - for when the caller already has an SkData
+// - SkROBuffer
+// - for when the caller wants to read/write in different threads
+//
+// Unlike SharedBuffer, this is a read-only interface. There is no way to
+// modify the underlying data source.
+class SegmentReader : public RefCounted<SegmentReader> {
+ WTF_MAKE_NONCOPYABLE(SegmentReader);
+public:
+ SegmentReader() {}
+ virtual ~SegmentReader() {}
+ virtual size_t size() const = 0;
+ virtual size_t getSomeData(const char*& data, size_t position) const = 0;
Peter Kasting 2016/03/23 02:42:59 Maybe for clarity at the callers this should take
scroggo_chromium 2016/03/24 13:59:46 I'm not opposed to that in theory, but a goal is t
Peter Kasting 2016/03/24 22:05:43 Yeah, that seems sane. Up to you whether you thin
scroggo_chromium 2016/03/25 01:05:10 Acknowledged.
+ virtual PassRefPtr<SkData> getAsSkData() const = 0;
+};
+
+} // namespace blink
+#endif // SegmentReader_h

Powered by Google App Engine
This is Rietveld 408576698