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

Unified Diff: third_party/WebKit/Source/core/imagebitmap/ImageBitmapSource.h

Issue 1455763002: Use union type in ImageBitmapFactories.idl (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: better argument passing Created 5 years, 1 month 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/core/imagebitmap/ImageBitmapSource.h
diff --git a/third_party/WebKit/Source/core/imagebitmap/ImageBitmapSource.h b/third_party/WebKit/Source/core/imagebitmap/ImageBitmapSource.h
new file mode 100644
index 0000000000000000000000000000000000000000..d0043dde4606b9a938dadc220b4df95263a18126
--- /dev/null
+++ b/third_party/WebKit/Source/core/imagebitmap/ImageBitmapSource.h
@@ -0,0 +1,33 @@
+// Copyright 2015 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 ImageBitmapSource_h
+#define ImageBitmapSource_h
+
+#include "bindings/core/v8/ScriptPromise.h"
+#include "bindings/core/v8/ScriptPromiseResolver.h"
+#include "bindings/core/v8/ScriptState.h"
+#include "core/CoreExport.h"
+#include "core/dom/ExceptionCode.h"
+#include "platform/geometry/IntSize.h"
+
+namespace blink {
+
+class ImageBitmap;
+
+class CORE_EXPORT ImageBitmapSource {
+public:
+ virtual IntSize bitmapSourceSize() const { return IntSize(); }
+ virtual ScriptPromise createImageBitmap(ScriptState*, EventTarget&, int sx, int sy, int sw, int sh, ExceptionState&);
+
+ virtual bool isBlob() const { return false; }
+
+ static ScriptPromise fulfillImageBitmap(ScriptState*, PassRefPtrWillBeRawPtr<ImageBitmap>);
+protected:
+ virtual ~ImageBitmapSource() {}
+};
+
+} // namespace blink
+
+#endif

Powered by Google App Engine
This is Rietveld 408576698