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

Unified Diff: sky/engine/core/painting/CanvasImage.h

Issue 1151753009: Add Sky framework support for drawing images (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Run git cl format once more Created 5 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
« no previous file with comments | « sky/engine/core/painting/Canvas.idl ('k') | sky/engine/core/painting/CanvasImage.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/engine/core/painting/CanvasImage.h
diff --git a/sky/engine/core/painting/CanvasImage.h b/sky/engine/core/painting/CanvasImage.h
new file mode 100644
index 0000000000000000000000000000000000000000..1f40d7bab83124db57b22bf2cb5aa7663c0f828f
--- /dev/null
+++ b/sky/engine/core/painting/CanvasImage.h
@@ -0,0 +1,47 @@
+// Copyright 2013 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 SKY_ENGINE_CORE_PAINTING_CANVASIMAGE_H_
+#define SKY_ENGINE_CORE_PAINTING_CANVASIMAGE_H_
+
+#include "sky/engine/core/loader/NewImageLoader.h"
+#include "sky/engine/platform/weborigin/KURL.h"
+#include "sky/engine/tonic/dart_wrappable.h"
+#include "sky/engine/wtf/PassRefPtr.h"
+#include "sky/engine/wtf/text/AtomicString.h"
+#include "third_party/skia/include/core/SkBitmap.h"
+
+namespace blink {
+
+class CanvasImage final : public RefCounted<CanvasImage>,
+ public DartWrappable,
+ public NewImageLoaderClient {
+ DEFINE_WRAPPERTYPEINFO();
+ public:
+ ~CanvasImage() override;
+ static PassRefPtr<CanvasImage> create() { return adoptRef(new CanvasImage); }
+
+ int width() const;
+ int height() const;
+
+ KURL src() const { return srcURL_; }
+ void setSrc(const String&);
+
+ const SkBitmap& bitmap() const { return bitmap_; }
+ void setBitmap(const SkBitmap& bitmap) { bitmap_ = bitmap; }
+
+ private:
+ CanvasImage();
+
+ // NewImageLoaderClient
+ void OnLoadFinished(const SkBitmap& result) override;
+
+ KURL srcURL_;
+ SkBitmap bitmap_;
+ OwnPtr<NewImageLoader> imageLoader_;
+};
+
+} // namespace blink
+
+#endif // SKY_ENGINE_CORE_PAINTING_CANVASIMAGE_H_
« no previous file with comments | « sky/engine/core/painting/Canvas.idl ('k') | sky/engine/core/painting/CanvasImage.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698