HomeSort by relevance Sort by last modified time
    Searched defs:ImageBuffer (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/ui/file_manager/gallery/js/image_editor/
image_buffer.js 14 function ImageBuffer() {
20 * @param {ImageBuffer.Overlay} overlay // TODO(JSDOC).
22 ImageBuffer.prototype.addOverlay = function(overlay) {
34 * @param {ImageBuffer.Overlay} overlay // TODO(JSDOC).
36 ImageBuffer.prototype.removeOverlay = function(overlay) {
49 ImageBuffer.prototype.draw = function() {
62 ImageBuffer.prototype.getCursorStyle = function(x, y, mouseDown) {
76 ImageBuffer.prototype.onClick = function(x, y) {
90 ImageBuffer.prototype.getDragHandler = function(x, y, touch) {
104 * @return {ImageBuffer.DoubleTapAction} Action to perform as result
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
ImageBuffer.h 71 class PLATFORM_EXPORT ImageBuffer {
72 WTF_MAKE_NONCOPYABLE(ImageBuffer); WTF_MAKE_FAST_ALLOCATED;
74 static PassOwnPtr<ImageBuffer> create(const IntSize&, OpacityMode = NonOpaque);
75 static PassOwnPtr<ImageBuffer> create(PassOwnPtr<ImageBufferSurface>);
77 ~ImageBuffer();
128 ImageBuffer(PassOwnPtr<ImageBufferSurface>);
ImageBuffer.cpp 34 #include "platform/graphics/ImageBuffer.h"
64 PassOwnPtr<ImageBuffer> ImageBuffer::create(PassOwnPtr<ImageBufferSurface> surface)
68 return adoptPtr(new ImageBuffer(surface));
71 PassOwnPtr<ImageBuffer> ImageBuffer::create(const IntSize& size, OpacityMode opacityMode)
76 return adoptPtr(new ImageBuffer(surface.release()));
79 ImageBuffer::ImageBuffer(PassOwnPtr<ImageBufferSurface> surface)
91 ImageBuffer::~ImageBuffer(
    [all...]

Completed in 701 milliseconds