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

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

Issue 680253004: Cleanup: Remove unnecessary forward declarations from some views files. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years, 1 month 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 | « no previous file | include/views/SkOSWindow_NaCl.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1
2 /* 1 /*
3 * Copyright 2011 Skia 2 * Copyright 2011 Skia
4 * 3 *
5 * 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
6 * found in the LICENSE file. 5 * found in the LICENSE file.
7 */ 6 */
8 7
9
10 #ifndef SkOSWindow_Android_DEFINED 8 #ifndef SkOSWindow_Android_DEFINED
11 #define SkOSWindow_Android_DEFINED 9 #define SkOSWindow_Android_DEFINED
12 10
13 #include "SkWindow.h" 11 #include "SkWindow.h"
14 12
15 struct SkIRect;
16
17 class SkOSWindow : public SkWindow { 13 class SkOSWindow : public SkWindow {
18 public: 14 public:
19 SkOSWindow(void*) {} 15 SkOSWindow(void*) {}
20 ~SkOSWindow() {} 16 ~SkOSWindow() {}
21 17
22 enum SkBackEndTypes { 18 enum SkBackEndTypes {
23 kNone_BackEndType, 19 kNone_BackEndType,
24 kNativeGL_BackEndType, 20 kNativeGL_BackEndType,
25 }; 21 };
26 22
(...skipping 12 matching lines...) Expand all
39 protected: 35 protected:
40 // overrides from SkWindow 36 // overrides from SkWindow
41 virtual void onHandleInval(const SkIRect&); 37 virtual void onHandleInval(const SkIRect&);
42 virtual void onSetTitle(const char title[]); 38 virtual void onSetTitle(const char title[]);
43 39
44 private: 40 private:
45 typedef SkWindow INHERITED; 41 typedef SkWindow INHERITED;
46 }; 42 };
47 43
48 #endif 44 #endif
OLDNEW
« no previous file with comments | « no previous file | include/views/SkOSWindow_NaCl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698