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

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

Issue 1534813004: Run smooth scroll animations on the compositor when possible (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: nit Created 5 years 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) 2009 Apple Inc. All rights reserved. 2 * Copyright (C) 2009 Apple Inc. All rights reserved.
3 * Copyright (C) 2013 Intel Corporation. All rights reserved. 3 * Copyright (C) 2013 Intel Corporation. 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 185 matching lines...) Expand 10 before | Expand all | Expand 10 after
196 196
197 // Set that the position/size of the contents (image or video). 197 // Set that the position/size of the contents (image or video).
198 void setContentsRect(const IntRect&); 198 void setContentsRect(const IntRect&);
199 199
200 // Return true if the animation is handled by the compositing system. If thi s returns 200 // Return true if the animation is handled by the compositing system. If thi s returns
201 // false, the animation will be run by AnimationController. 201 // false, the animation will be run by AnimationController.
202 // These methods handle both transitions and keyframe animations. 202 // These methods handle both transitions and keyframe animations.
203 bool addAnimation(PassOwnPtr<WebCompositorAnimation>); 203 bool addAnimation(PassOwnPtr<WebCompositorAnimation>);
204 void pauseAnimation(int animationId, double /*timeOffset*/); 204 void pauseAnimation(int animationId, double /*timeOffset*/);
205 void removeAnimation(int animationId); 205 void removeAnimation(int animationId);
206 void abortAnimation(int animationId);
206 207
207 // Layer contents 208 // Layer contents
208 void setContentsToImage(Image*, RespectImageOrientationEnum = DoNotRespectIm ageOrientation); 209 void setContentsToImage(Image*, RespectImageOrientationEnum = DoNotRespectIm ageOrientation);
209 void setContentsToPlatformLayer(WebLayer* layer) { setContentsTo(layer); } 210 void setContentsToPlatformLayer(WebLayer* layer) { setContentsTo(layer); }
210 bool hasContentsLayer() const { return m_contentsLayer; } 211 bool hasContentsLayer() const { return m_contentsLayer; }
211 212
212 // For hosting this GraphicsLayer in a native layer hierarchy. 213 // For hosting this GraphicsLayer in a native layer hierarchy.
213 WebLayer* platformLayer() const; 214 WebLayer* platformLayer() const;
214 215
215 typedef HashMap<int, int> RenderingContextMap; 216 typedef HashMap<int, int> RenderingContextMap;
(...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after
385 }; 386 };
386 387
387 } // namespace blink 388 } // namespace blink
388 389
389 #ifndef NDEBUG 390 #ifndef NDEBUG
390 // Outside the blink namespace for ease of invocation from gdb. 391 // Outside the blink namespace for ease of invocation from gdb.
391 void PLATFORM_EXPORT showGraphicsLayerTree(const blink::GraphicsLayer*); 392 void PLATFORM_EXPORT showGraphicsLayerTree(const blink::GraphicsLayer*);
392 #endif 393 #endif
393 394
394 #endif // GraphicsLayer_h 395 #endif // GraphicsLayer_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/input/EventHandler.cpp ('k') | third_party/WebKit/Source/platform/graphics/GraphicsLayer.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698