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

Unified Diff: Source/core/dom/FrameRequestCallback.h

Issue 1043903003: rAF: Introduce FrameRequestCallbackCollection for managing rAF callbacks. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: . Created 5 years, 9 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 | « Source/core/dom/Document.cpp ('k') | Source/core/dom/FrameRequestCallback.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/FrameRequestCallback.h
diff --git a/Source/core/dom/RequestAnimationFrameCallback.h b/Source/core/dom/FrameRequestCallback.h
similarity index 86%
rename from Source/core/dom/RequestAnimationFrameCallback.h
rename to Source/core/dom/FrameRequestCallback.h
index b8fd4885d337c57a0fdcaf398896ac769d9885cf..cad77750de5cacdd9e5defeb5830c5b0f61aff4d 100644
--- a/Source/core/dom/RequestAnimationFrameCallback.h
+++ b/Source/core/dom/FrameRequestCallback.h
@@ -28,16 +28,16 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-#ifndef RequestAnimationFrameCallback_h
-#define RequestAnimationFrameCallback_h
+#ifndef FrameRequestCallback_h
+#define FrameRequestCallback_h
#include "platform/heap/Handle.h"
namespace blink {
-class RequestAnimationFrameCallback : public GarbageCollectedFinalized<RequestAnimationFrameCallback> {
+class FrameRequestCallback : public GarbageCollectedFinalized<FrameRequestCallback> {
public:
- virtual ~RequestAnimationFrameCallback() { }
+ virtual ~FrameRequestCallback() { }
DEFINE_INLINE_VIRTUAL_TRACE() { }
virtual void handleEvent(double highResTimeMs) = 0;
@@ -48,4 +48,4 @@ public:
}
-#endif // RequestAnimationFrameCallback_h
+#endif // FrameRequestCallback_h
« no previous file with comments | « Source/core/dom/Document.cpp ('k') | Source/core/dom/FrameRequestCallback.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698