| OLD | NEW |
| 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 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 241 | 241 |
| 242 static void registerContentsLayer(WebLayer*); | 242 static void registerContentsLayer(WebLayer*); |
| 243 static void unregisterContentsLayer(WebLayer*); | 243 static void unregisterContentsLayer(WebLayer*); |
| 244 | 244 |
| 245 IntRect interestRect(); | 245 IntRect interestRect(); |
| 246 void paint(const IntRect* interestRect, GraphicsContext::DisabledMode = Grap
hicsContext::NothingDisabled); | 246 void paint(const IntRect* interestRect, GraphicsContext::DisabledMode = Grap
hicsContext::NothingDisabled); |
| 247 | 247 |
| 248 // WebCompositorAnimationDelegate implementation. | 248 // WebCompositorAnimationDelegate implementation. |
| 249 void notifyAnimationStarted(double monotonicTime, int group) override; | 249 void notifyAnimationStarted(double monotonicTime, int group) override; |
| 250 void notifyAnimationFinished(double monotonicTime, int group) override; | 250 void notifyAnimationFinished(double monotonicTime, int group) override; |
| 251 void notifyAnimationAborted(double monotonicTime, int group) override; |
| 251 | 252 |
| 252 // WebLayerScrollClient implementation. | 253 // WebLayerScrollClient implementation. |
| 253 void didScroll() override; | 254 void didScroll() override; |
| 254 | 255 |
| 255 // cc::LayerClient implementation. | 256 // cc::LayerClient implementation. |
| 256 scoped_refptr<base::trace_event::ConvertableToTraceFormat> TakeDebugInfo(cc:
:Layer*) override; | 257 scoped_refptr<base::trace_event::ConvertableToTraceFormat> TakeDebugInfo(cc:
:Layer*) override; |
| 257 | 258 |
| 258 PaintController& paintController(); | 259 PaintController& paintController(); |
| 259 | 260 |
| 260 // Exposed for tests. | 261 // Exposed for tests. |
| (...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 386 }; | 387 }; |
| 387 | 388 |
| 388 } // namespace blink | 389 } // namespace blink |
| 389 | 390 |
| 390 #ifndef NDEBUG | 391 #ifndef NDEBUG |
| 391 // Outside the blink namespace for ease of invocation from gdb. | 392 // Outside the blink namespace for ease of invocation from gdb. |
| 392 void PLATFORM_EXPORT showGraphicsLayerTree(const blink::GraphicsLayer*); | 393 void PLATFORM_EXPORT showGraphicsLayerTree(const blink::GraphicsLayer*); |
| 393 #endif | 394 #endif |
| 394 | 395 |
| 395 #endif // GraphicsLayer_h | 396 #endif // GraphicsLayer_h |
| OLD | NEW |