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

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

Issue 2640983002: Rename paint data structures (Closed)
Patch Set: DrawingDisplayItem Created 3 years, 11 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/Canvas2DLayerBridge.h
diff --git a/third_party/WebKit/Source/platform/graphics/Canvas2DLayerBridge.h b/third_party/WebKit/Source/platform/graphics/Canvas2DLayerBridge.h
index 0ba1285a88569ec4d77aafd675ef5b4ac8fe6395..a3d8bf63ceb50ea8dabc71bcc7d12a6e447d5353 100644
--- a/third_party/WebKit/Source/platform/graphics/Canvas2DLayerBridge.h
+++ b/third_party/WebKit/Source/platform/graphics/Canvas2DLayerBridge.h
@@ -31,11 +31,12 @@
#include "platform/PlatformExport.h"
#include "platform/geometry/IntSize.h"
#include "platform/graphics/ImageBufferSurface.h"
+#include "platform/graphics/paint/PaintRecorder.h"
+#include "platform/graphics/paint/PaintSurface.h"
#include "public/platform/WebExternalTextureLayer.h"
#include "public/platform/WebThread.h"
#include "third_party/khronos/GLES2/gl2.h"
#include "third_party/skia/include/core/SkRefCnt.h"
-#include "third_party/skia/include/core/SkSurface.h"
#include "wtf/Allocator.h"
#include "wtf/Deque.h"
#include "wtf/RefCounted.h"
@@ -46,7 +47,6 @@
class SkImage;
struct SkImageInfo;
-class SkPictureRecorder;
namespace gpu {
namespace gles2 {
@@ -114,7 +114,7 @@ class PLATFORM_EXPORT Canvas2DLayerBridge
void willWritePixels();
void willOverwriteAllPixels();
void willOverwriteCanvas();
- SkCanvas* canvas();
+ PaintCanvas* canvas();
void disableDeferral(DisableDeferralReason);
bool checkSurfaceValid();
bool restoreSurface();
@@ -209,7 +209,7 @@ class PLATFORM_EXPORT Canvas2DLayerBridge
void willProcessTask() override;
void didProcessTask() override;
- SkSurface* getOrCreateSurface(AccelerationHint = PreferAcceleration);
+ PaintSurface* getOrCreateSurface(AccelerationHint = PreferAcceleration);
bool shouldAccelerate(AccelerationHint) const;
// Returns the GL filter associated with |m_filterQuality|.
@@ -245,8 +245,8 @@ class PLATFORM_EXPORT Canvas2DLayerBridge
// changing texture bindings.
void resetSkiaTextureBinding();
- std::unique_ptr<SkPictureRecorder> m_recorder;
- sk_sp<SkSurface> m_surface;
+ std::unique_ptr<PaintRecorder> m_recorder;
+ sk_sp<PaintSurface> m_surface;
sk_sp<SkImage> m_hibernationImage;
int m_initialSurfaceSaveCount;
std::unique_ptr<WebExternalTextureLayer> m_layer;

Powered by Google App Engine
This is Rietveld 408576698