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

Side by Side Diff: include/views/SkWindow.h

Issue 1159213002: Expand VisualBench to a real benching tool (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: tweaks Created 5 years, 6 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
« no previous file with comments | « include/views/SkOSWindow_Unix.h ('k') | src/views/unix/SkOSWindow_Unix.cpp » ('j') | 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 * Copyright 2006 The Android Open Source Project 2 * Copyright 2006 The Android Open Source Project
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 SkWindow_DEFINED 8 #ifndef SkWindow_DEFINED
9 #define SkWindow_DEFINED 9 #define SkWindow_DEFINED
10 10
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 void preConcat(const SkMatrix&); 75 void preConcat(const SkMatrix&);
76 void postConcat(const SkMatrix&); 76 void postConcat(const SkMatrix&);
77 77
78 virtual SkSurface* createSurface(); 78 virtual SkSurface* createSurface();
79 79
80 virtual void onPDFSaved(const char title[], const char desc[], 80 virtual void onPDFSaved(const char title[], const char desc[],
81 const char path[]) {} 81 const char path[]) {}
82 82
83 virtual void setFullscreen(bool) {} 83 virtual void setFullscreen(bool) {}
84 virtual void setVsync(bool) {} 84 virtual void setVsync(bool) {}
85 virtual void closeWindow() {}
85 86
86 protected: 87 protected:
87 virtual bool onEvent(const SkEvent&); 88 virtual bool onEvent(const SkEvent&);
88 virtual bool onDispatchClick(int x, int y, Click::State, void* owner, unsign ed modi); 89 virtual bool onDispatchClick(int x, int y, Click::State, void* owner, unsign ed modi);
89 // called if part of our bitmap is invalidated 90 // called if part of our bitmap is invalidated
90 virtual void onHandleInval(const SkIRect&); 91 virtual void onHandleInval(const SkIRect&);
91 virtual bool onHandleChar(SkUnichar); 92 virtual bool onHandleChar(SkUnichar);
92 virtual bool onHandleKey(SkKey); 93 virtual bool onHandleKey(SkKey);
93 virtual bool onHandleKeyUp(SkKey); 94 virtual bool onHandleKeyUp(SkKey);
94 virtual void onAddMenu(const SkOSMenu*) {}; 95 virtual void onAddMenu(const SkOSMenu*) {};
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
134 #include "SkOSWindow_Android.h" 135 #include "SkOSWindow_Android.h"
135 #elif defined(SK_BUILD_FOR_UNIX) 136 #elif defined(SK_BUILD_FOR_UNIX)
136 #include "SkOSWindow_Unix.h" 137 #include "SkOSWindow_Unix.h"
137 #elif defined(SK_BUILD_FOR_SDL) 138 #elif defined(SK_BUILD_FOR_SDL)
138 #include "SkOSWindow_SDL.h" 139 #include "SkOSWindow_SDL.h"
139 #elif defined(SK_BUILD_FOR_IOS) 140 #elif defined(SK_BUILD_FOR_IOS)
140 #include "SkOSWindow_iOS.h" 141 #include "SkOSWindow_iOS.h"
141 #endif 142 #endif
142 143
143 #endif 144 #endif
OLDNEW
« no previous file with comments | « include/views/SkOSWindow_Unix.h ('k') | src/views/unix/SkOSWindow_Unix.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698