| OLD | NEW |
| 1 | |
| 2 /* | 1 /* |
| 3 * Copyright 2011 Google Inc. | 2 * Copyright 2011 Google Inc. |
| 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 #include "SampleCode.h" | 8 #include "SampleCode.h" |
| 10 #include "SkAnimTimer.h" | 9 #include "SkAnimTimer.h" |
| 11 #include "SkView.h" | 10 #include "SkView.h" |
| (...skipping 326 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 338 return click; | 337 return click; |
| 339 } | 338 } |
| 340 } | 339 } |
| 341 return this->INHERITED::onFindClickHandler(x, y, modi); | 340 return this->INHERITED::onFindClickHandler(x, y, modi); |
| 342 } | 341 } |
| 343 | 342 |
| 344 private: | 343 private: |
| 345 typedef SampleView INHERITED; | 344 typedef SampleView INHERITED; |
| 346 }; | 345 }; |
| 347 DEF_SAMPLE( return new ArcToView; ) | 346 DEF_SAMPLE( return new ArcToView; ) |
| 348 | |
| OLD | NEW |