72c9faab45
This fixes every case where virtual and SK_OVERRIDE were on the same line, which should be the bulk of cases. We'll have to manually clean up the rest over time unless I level up in regexes. for f in (find . -type f); perl -p -i -e 's/virtual (.*)SK_OVERRIDE/\1SK_OVERRIDE/g' $f; end BUG=skia: Review URL: https://codereview.chromium.org/806653007
33 lines
633 B
C++
33 lines
633 B
C++
/*
|
|
* Copyright 2014 Skia
|
|
*
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
#ifndef iOSShell_DEFINED
|
|
#define iOSShell_DEFINED
|
|
|
|
#include "SkWindow.h"
|
|
|
|
class SkCanvas;
|
|
class SkEvent;
|
|
class SkViewFactory;
|
|
|
|
class ShellWindow : public SkOSWindow {
|
|
public:
|
|
ShellWindow(void* hwnd, int argc, char** argv);
|
|
virtual ~ShellWindow();
|
|
|
|
protected:
|
|
void onSizeChange() SK_OVERRIDE;
|
|
|
|
virtual bool onDispatchClick(int x, int y, Click::State, void* owner,
|
|
unsigned modi) SK_OVERRIDE;
|
|
|
|
private:
|
|
typedef SkOSWindow INHERITED;
|
|
};
|
|
|
|
#endif
|