| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2016 Google Inc. | 2 * Copyright 2016 Google Inc. |
| 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 Viewer_DEFINED | 8 #ifndef Viewer_DEFINED |
| 9 #define Viewer_DEFINED | 9 #define Viewer_DEFINED |
| 10 | 10 |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 SkScalar fZoomLevel; | 59 SkScalar fZoomLevel; |
| 60 SkScalar fZoomScale; | 60 SkScalar fZoomScale; |
| 61 | 61 |
| 62 sk_app::CommandSet fCommands; | 62 sk_app::CommandSet fCommands; |
| 63 | 63 |
| 64 SkTouchGesture fGesture; | 64 SkTouchGesture fGesture; |
| 65 | 65 |
| 66 // identity unless the window initially scales the content to fit the screen
. | 66 // identity unless the window initially scales the content to fit the screen
. |
| 67 SkMatrix fDefaultMatrix; | 67 SkMatrix fDefaultMatrix; |
| 68 SkMatrix fDefaultMatrixInv; | 68 SkMatrix fDefaultMatrixInv; |
| 69 |
| 70 Json::Value fAllSlideNames; // cache all slide names for fast upd
ateUIState |
| 69 }; | 71 }; |
| 70 | 72 |
| 71 | 73 |
| 72 #endif | 74 #endif |
| OLD | NEW |