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

Side by Side Diff: platform_tools/android/app/jni/com_skia_SkiaSampleRenderer.cpp

Issue 264773012: Remove extra includes from android sample app (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Created 6 years, 7 months 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 1
2 /* 2 /*
3 * Copyright 2011 Skia 3 * Copyright 2011 Skia
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 #include "com_skia_SkiaSampleRenderer.h" 8 #include "com_skia_SkiaSampleRenderer.h"
9 9
10 #include "GrContext.h"
11 #include "gl/GrGLInterface.h"
12 #include "SampleApp.h" 10 #include "SampleApp.h"
13 #include "SkApplication.h" 11 #include "SkApplication.h"
14 #include "SkCanvas.h" 12 #include "SkCanvas.h"
15 #include "SkDevice.h" 13 #include "SkDevice.h"
16 #include "SkEvent.h" 14 #include "SkEvent.h"
17 #include "SkWindow.h" 15 #include "SkWindow.h"
18 16
19 #include <jni.h> 17 #include <jni.h>
20 #include "android/AndroidKeyToSkKey.h" 18 #include "android/AndroidKeyToSkKey.h"
21 19
(...skipping 325 matching lines...) Expand 10 before | Expand all | Expand 10 after
347 JNIEnv* env, jobject thiz) 345 JNIEnv* env, jobject thiz)
348 { 346 {
349 gWindow->saveToPdf(); 347 gWindow->saveToPdf();
350 } 348 }
351 349
352 JNIEXPORT void JNICALL Java_com_skia_SkiaSampleRenderer_postInval( 350 JNIEXPORT void JNICALL Java_com_skia_SkiaSampleRenderer_postInval(
353 JNIEnv* env, jobject thiz) 351 JNIEnv* env, jobject thiz)
354 { 352 {
355 gWindow->postInvalDelay(); 353 gWindow->postInvalDelay();
356 } 354 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698