| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2011 Skia | 2 * Copyright 2011 Skia |
| 3 * | 3 * |
| 4 * 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 |
| 5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
| 6 */ | 6 */ |
| 7 | 7 |
| 8 #ifndef SkOSWindow_Android_DEFINED | 8 #ifndef SkOSWindow_Android_DEFINED |
| 9 #define SkOSWindow_Android_DEFINED | 9 #define SkOSWindow_Android_DEFINED |
| 10 | 10 |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 }; | 29 }; |
| 30 | 30 |
| 31 bool attach(SkBackEndTypes attachType, int msaaSampleCount, AttachmentInfo*
info); | 31 bool attach(SkBackEndTypes attachType, int msaaSampleCount, AttachmentInfo*
info); |
| 32 void detach(); | 32 void detach(); |
| 33 void present(); | 33 void present(); |
| 34 bool makeFullscreen() { return true; } | 34 bool makeFullscreen() { return true; } |
| 35 void closeWindow(); | 35 void closeWindow(); |
| 36 void setVsync(bool); | 36 void setVsync(bool); |
| 37 bool destroyRequested() { return fDestroyRequested; } | 37 bool destroyRequested() { return fDestroyRequested; } |
| 38 | 38 |
| 39 virtual void onPDFSaved(const char title[], const char desc[], const char pa
th[]); | |
| 40 | |
| 41 protected: | 39 protected: |
| 42 // overrides from SkWindow | 40 // overrides from SkWindow |
| 43 virtual void onHandleInval(const SkIRect&); | 41 virtual void onHandleInval(const SkIRect&); |
| 44 virtual void onSetTitle(const char title[]); | 42 virtual void onSetTitle(const char title[]); |
| 45 | 43 |
| 46 private: | 44 private: |
| 47 SkAndroidWindow fWindow; | 45 SkAndroidWindow fWindow; |
| 48 ANativeWindow* fNativeWindow; | 46 ANativeWindow* fNativeWindow; |
| 49 bool fDestroyRequested; | 47 bool fDestroyRequested; |
| 50 | 48 |
| 51 typedef SkWindow INHERITED; | 49 typedef SkWindow INHERITED; |
| 52 }; | 50 }; |
| 53 | 51 |
| 54 #endif | 52 #endif |
| OLD | NEW |