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

Side by Side Diff: experimental/SkV8Example/SkV8Example.h

Issue 93933005: V8 and Skia (Closed) Base URL: http://skia.googlecode.com/svn/trunk/
Patch Set: no v8 in .h Created 7 years 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
« no previous file with comments | « no previous file | experimental/SkV8Example/SkV8Example.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 SkV8Example_DEFINED
11 #define SkV8Example_DEFINED
12
13 #include "SkWindow.h"
14
15 class SkCanvas;
16
17
18 class SkV8ExampleWindow : public SkOSWindow {
19 public:
20 SkV8ExampleWindow(void* hwnd);
21
22
23 protected:
24 virtual void onDraw(SkCanvas* canvas) SK_OVERRIDE;
25
26
27 #ifdef SK_BUILD_FOR_WIN
28 virtual void onHandleInval(const SkIRect&) SK_OVERRIDE;
29 #endif
30
31 private:
32 typedef SkOSWindow INHERITED;
33 };
34
35 #endif
OLDNEW
« no previous file with comments | « no previous file | experimental/SkV8Example/SkV8Example.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698