| OLD | NEW |
| 1 | 1 |
| 2 /* | 2 /* |
| 3 * Copyright 2011 Google Inc. | 3 * Copyright 2011 Google Inc. |
| 4 * | 4 * |
| 5 * Use of this source code is governed by a BSD-style license that can be | 5 * Use of this source code is governed by a BSD-style license that can be |
| 6 * found in the LICENSE file. | 6 * found in the LICENSE file. |
| 7 */ | 7 */ |
| 8 | 8 |
| 9 #include "SampleCode.h" | 9 #include "SampleCode.h" |
| 10 #include "SkAnimTimer.h" | 10 #include "SkAnimTimer.h" |
| 11 #include "SkView.h" | 11 #include "SkView.h" |
| 12 #include "SkCanvas.h" | 12 #include "SkCanvas.h" |
| 13 #include "SkGradientShader.h" | 13 #include "SkGradientShader.h" |
| 14 #include "SkGraphics.h" | 14 #include "SkGraphics.h" |
| 15 #include "SkImageDecoder.h" | |
| 16 #include "SkPath.h" | 15 #include "SkPath.h" |
| 17 #include "SkRegion.h" | 16 #include "SkRegion.h" |
| 18 #include "SkShader.h" | 17 #include "SkShader.h" |
| 19 #include "SkUtils.h" | 18 #include "SkUtils.h" |
| 20 #include "SkXfermode.h" | 19 #include "SkXfermode.h" |
| 21 #include "SkColorPriv.h" | 20 #include "SkColorPriv.h" |
| 22 #include "SkColorFilter.h" | 21 #include "SkColorFilter.h" |
| 23 #include "SkParsePath.h" | 22 #include "SkParsePath.h" |
| 24 #include "SkTime.h" | 23 #include "SkTime.h" |
| 25 #include "SkTypeface.h" | 24 #include "SkTypeface.h" |
| (...skipping 314 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 340 } | 339 } |
| 341 } | 340 } |
| 342 return this->INHERITED::onFindClickHandler(x, y, modi); | 341 return this->INHERITED::onFindClickHandler(x, y, modi); |
| 343 } | 342 } |
| 344 | 343 |
| 345 private: | 344 private: |
| 346 typedef SampleView INHERITED; | 345 typedef SampleView INHERITED; |
| 347 }; | 346 }; |
| 348 DEF_SAMPLE( return new ArcToView; ) | 347 DEF_SAMPLE( return new ArcToView; ) |
| 349 | 348 |
| OLD | NEW |