| OLD | NEW | 
|    1  |  | 
|    2 /* |    1 /* | 
|    3  * Copyright 2006 The Android Open Source Project |    2  * Copyright 2006 The Android Open Source Project | 
|    4  * |    3  * | 
|    5  * Use of this source code is governed by a BSD-style license that can be |    4  * Use of this source code is governed by a BSD-style license that can be | 
|    6  * found in the LICENSE file. |    5  * found in the LICENSE file. | 
|    7  */ |    6  */ | 
|    8  |    7  | 
|    9  |    8  | 
|   10 #include "SkEvent.h" |    9 #include "SkEvent.h" | 
|   11  |   10  | 
| (...skipping 492 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  504         evt = next; |  503         evt = next; | 
|  505     } |  504     } | 
|  506  |  505  | 
|  507     evt = globals.fDelayQHead; |  506     evt = globals.fDelayQHead; | 
|  508     while (evt) { |  507     while (evt) { | 
|  509         SkEvent* next = evt->fNextEvent; |  508         SkEvent* next = evt->fNextEvent; | 
|  510         delete evt; |  509         delete evt; | 
|  511         evt = next; |  510         evt = next; | 
|  512     } |  511     } | 
|  513 } |  512 } | 
| OLD | NEW |