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

Side by Side Diff: tools/iOSShell.h

Issue 806653007: Fix up all the easy virtual ... SK_OVERRIDE cases. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: rebase Created 5 years, 11 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 | « tools/PictureResultsWriter.h ('k') | tools/render_pdfs_main.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 2014 Skia 2 * Copyright 2014 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 iOSShell_DEFINED 8 #ifndef iOSShell_DEFINED
9 #define iOSShell_DEFINED 9 #define iOSShell_DEFINED
10 10
11 #include "SkWindow.h" 11 #include "SkWindow.h"
12 12
13 class SkCanvas; 13 class SkCanvas;
14 class SkEvent; 14 class SkEvent;
15 class SkViewFactory; 15 class SkViewFactory;
16 16
17 class ShellWindow : public SkOSWindow { 17 class ShellWindow : public SkOSWindow {
18 public: 18 public:
19 ShellWindow(void* hwnd, int argc, char** argv); 19 ShellWindow(void* hwnd, int argc, char** argv);
20 virtual ~ShellWindow(); 20 virtual ~ShellWindow();
21 21
22 protected: 22 protected:
23 virtual void onSizeChange() SK_OVERRIDE; 23 void onSizeChange() SK_OVERRIDE;
24 24
25 virtual bool onDispatchClick(int x, int y, Click::State, void* owner, 25 virtual bool onDispatchClick(int x, int y, Click::State, void* owner,
26 unsigned modi) SK_OVERRIDE; 26 unsigned modi) SK_OVERRIDE;
27 27
28 private: 28 private:
29 typedef SkOSWindow INHERITED; 29 typedef SkOSWindow INHERITED;
30 }; 30 };
31 31
32 #endif 32 #endif
OLDNEW
« no previous file with comments | « tools/PictureResultsWriter.h ('k') | tools/render_pdfs_main.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698