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

Side by Side Diff: tools/viewer/sk_app/win/Window_win.h

Issue 2001153002: Move inval dedup to Window for wider usages. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Improve Comments Created 4 years, 7 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
OLDNEW
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 Window_win_DEFINED 8 #ifndef Window_win_DEFINED
9 #define Window_win_DEFINED 9 #define Window_win_DEFINED
10 10
(...skipping 13 matching lines...) Expand all
24 Window_win() : Window() {} 24 Window_win() : Window() {}
25 ~Window_win() override {} 25 ~Window_win() override {}
26 26
27 bool init(HINSTANCE instance); 27 bool init(HINSTANCE instance);
28 28
29 void setTitle(const char*) override; 29 void setTitle(const char*) override;
30 void show() override; 30 void show() override;
31 31
32 bool attach(BackendType attachType, const DisplayParams& params) override; 32 bool attach(BackendType attachType, const DisplayParams& params) override;
33 33
34 void inval() override; 34 void onInval() override;
35 35
36 private: 36 private:
37 HINSTANCE fHInstance; 37 HINSTANCE fHInstance;
38 HWND fHWnd; 38 HWND fHWnd;
39 }; 39 };
40 40
41 } // namespace sk_app 41 } // namespace sk_app
42 42
43 #endif 43 #endif
OLDNEW
« no previous file with comments | « tools/viewer/sk_app/android/surface_glue_android.cpp ('k') | tools/viewer/sk_app/win/Window_win.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698