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

Unified Diff: third_party/WebKit/Source/platform/graphics/TextureHolder.h

Issue 2455983005: Refactor AcceleratedStaticBitmapImage (Closed)
Patch Set: deleteTexture in desctructor Created 4 years, 2 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/graphics/TextureHolder.h
diff --git a/third_party/WebKit/Source/platform/graphics/TextureHolder.h b/third_party/WebKit/Source/platform/graphics/TextureHolder.h
new file mode 100644
index 0000000000000000000000000000000000000000..9ca59e67528be7d878c290dd71925635a744728c
--- /dev/null
+++ b/third_party/WebKit/Source/platform/graphics/TextureHolder.h
@@ -0,0 +1,40 @@
+// 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 TextureHolder_h
+#define TextureHolder_h
+
+#include "gpu/command_buffer/common/mailbox.h"
+#include "gpu/command_buffer/common/sync_token.h"
+#include "platform/PlatformExport.h"
+#include "platform/geometry/IntSize.h"
+#include "third_party/skia/include/core/SkImage.h"
+#include "third_party/skia/include/core/SkRefCnt.h"
+
+namespace blink {
+
+class WebThread;
+
+class PLATFORM_EXPORT TextureHolder {
Justin Novosad 2016/10/28 21:58:41 There are many methods in this interface that are
+ public:
+ virtual ~TextureHolder() {}
+
+ virtual bool isSkiaTextureHolder() = 0;
+ virtual unsigned sharedContextId() = 0;
+ virtual gpu::Mailbox getMailbox() = 0;
Justin Novosad 2016/10/28 21:58:41 In blink we don't usually put "get" (or any other
+ virtual gpu::SyncToken getSyncToken() = 0;
+ virtual IntSize getMailboxSize() = 0;
+ virtual void releaseImageThreadSafe() = 0;
+ virtual sk_sp<SkImage> getSkImage() = 0;
+ virtual WebThread* getImageThread() = 0;
+ virtual IntSize size() const = 0;
+
+ virtual void setSharedContextId(unsigned) = 0;
+ virtual void setImageThread(WebThread*) = 0;
+ virtual void updateSyncToken(gpu::SyncToken) = 0;
+};
+
+} // namespace blink
+
+#endif // TextureHolder_h

Powered by Google App Engine
This is Rietveld 408576698