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

Side by Side Diff: third_party/WebKit/Source/platform/graphics/Image.h

Issue 2493673002: Synchronize OffscreenCanvas content with the placeholder canvas (Closed)
Patch Set: fix obsolete test Created 4 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006 Samuel Weinig (sam.weinig@gmail.com) 2 * Copyright (C) 2006 Samuel Weinig (sam.weinig@gmail.com)
3 * Copyright (C) 2004, 2005, 2006 Apple Computer, Inc. All rights reserved. 3 * Copyright (C) 2004, 2005, 2006 Apple Computer, Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 // the current frame. Since this may initiate a deferred image 77 // the current frame. Since this may initiate a deferred image
78 // decoding, PreCacheMetadata requires a InspectorPaintImageEvent 78 // decoding, PreCacheMetadata requires a InspectorPaintImageEvent
79 // during call. 79 // during call.
80 enum MetadataMode { UseCurrentMetadata, PreCacheMetadata }; 80 enum MetadataMode { UseCurrentMetadata, PreCacheMetadata };
81 virtual bool currentFrameKnownToBeOpaque( 81 virtual bool currentFrameKnownToBeOpaque(
82 MetadataMode = UseCurrentMetadata) = 0; 82 MetadataMode = UseCurrentMetadata) = 0;
83 83
84 virtual bool currentFrameIsComplete() { return false; } 84 virtual bool currentFrameIsComplete() { return false; }
85 virtual bool currentFrameIsLazyDecoded() { return false; } 85 virtual bool currentFrameIsLazyDecoded() { return false; }
86 virtual bool isTextureBacked(); 86 virtual bool isTextureBacked();
87 virtual void transfer() {}
xidachen 2016/11/14 19:05:03 I am not sure why this function is moved from Stat
87 88
88 // Derived classes should override this if they can assure that the current 89 // Derived classes should override this if they can assure that the current
89 // image frame contains only resources from its own security origin. 90 // image frame contains only resources from its own security origin.
90 virtual bool currentFrameHasSingleSecurityOrigin() const { return false; } 91 virtual bool currentFrameHasSingleSecurityOrigin() const { return false; }
91 92
92 static Image* nullImage(); 93 static Image* nullImage();
93 bool isNull() const { return size().isEmpty(); } 94 bool isNull() const { return size().isEmpty(); }
94 95
95 virtual bool usesContainerSize() const { return false; } 96 virtual bool usesContainerSize() const { return false; }
96 virtual bool hasRelativeSize() const { return false; } 97 virtual bool hasRelativeSize() const { return false; }
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after
219 bool m_imageObserverDisabled; 220 bool m_imageObserverDisabled;
220 }; 221 };
221 222
222 #define DEFINE_IMAGE_TYPE_CASTS(typeName) \ 223 #define DEFINE_IMAGE_TYPE_CASTS(typeName) \
223 DEFINE_TYPE_CASTS(typeName, Image, image, image->is##typeName(), \ 224 DEFINE_TYPE_CASTS(typeName, Image, image, image->is##typeName(), \
224 image.is##typeName()) 225 image.is##typeName())
225 226
226 } // namespace blink 227 } // namespace blink
227 228
228 #endif 229 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698