1/*
2 * Copyright 2014 Skia
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8#ifndef iOSShell_DEFINED
9#define iOSShell_DEFINED
10
11#include "SkWindow.h"
12
13class SkCanvas;
14class SkEvent;
15class SkViewFactory;
16
17class ShellWindow : public SkOSWindow {
18public:
19    ShellWindow(void* hwnd, int argc, char** argv);
20    virtual ~ShellWindow();
21
22protected:
23    virtual void onSizeChange() SK_OVERRIDE;
24
25    virtual bool onDispatchClick(int x, int y, Click::State, void* owner,
26                                 unsigned modi) SK_OVERRIDE;
27
28private:
29    typedef SkOSWindow INHERITED;
30};
31
32#endif
33