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

Side by Side Diff: helloskia/HelloSkia.h

Issue 16337012: Smallest possible desktop application that uses Skia to render stuff. (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Indentation fixes... Created 7 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 /*
2 * Copyright 2013 Google Inc.
3 *
4 *
5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file.
7 *
8 */
9
10 #ifndef HelloSkia_DEFINED
11 #define HelloSkia_DEFINED
12
13 #include "SkWindow.h"
14
15 class HelloWindow : public SkOSWindow {
16 public:
17 HelloWindow(void* hWnd, int argc, char** argv);
18
19 protected:
20 virtual void draw(SkCanvas* canvas);
21
22 SkColor fBGColor;
23 private:
24 double fRotationAngle;
25
26 typedef SkOSWindow INHERITED;
27 };
28 #endif
caryclark 2013/06/03 19:02:01 Looks great. By the way, have you activated trybot
sglez 2013/06/03 20:24:08 I will try that, are the docs up-to-date?
caryclark 2013/06/04 11:48:12 Not sure -- bump Eric if they are not. On 2013/06/
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698