CL to add setFullscreen and setVsync to SkWindow

BUG=skia:

Review URL: https://codereview.chromium.org/1151333004
diff --git a/tools/VisualBench.h b/tools/VisualBench.h
new file mode 100644
index 0000000..d9e0b50
--- /dev/null
+++ b/tools/VisualBench.h
@@ -0,0 +1,59 @@
+/*
+ * Copyright 2015 Google Inc.
+ *
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ *
+ */
+
+#ifndef VisualBench_DEFINED
+#define VisualBench_DEFINED
+
+#include "SkWindow.h"
+
+#include "SkPicture.h"
+#include "SkSurface.h"
+#include "gl/SkGLContext.h"
+
+class GrContext;
+struct GrGLInterface;
+class GrRenderTarget;
+class SkCanvas;
+
+/*
+ * A Visual benchmarking tool for gpu benchmarking
+ */
+class VisualBench : public SkOSWindow {
+public:
+    VisualBench(void* hwnd, int argc, char** argv);
+    ~VisualBench() override;
+
+protected:
+    SkSurface* createSurface() override;
+
+    void draw(SkCanvas* canvas) override;
+
+    void onSizeChange() override;
+
+private:
+    void setTitle();
+    bool setupBackend();
+    void setupRenderTarget();
+    bool onHandleChar(SkUnichar unichar) override;
+
+    int fCurrentLoops;
+    int fCurrentPicture;
+    int fCurrentFrame;
+    SkTArray<SkPicture*> fPictures;
+
+    // support framework
+    SkAutoTUnref<SkSurface> fSurface;
+    SkAutoTUnref<GrContext> fContext;
+    SkAutoTUnref<GrRenderTarget> fRenderTarget;
+    AttachmentInfo fAttachmentInfo;
+    SkAutoTUnref<const GrGLInterface> fInterface;
+
+    typedef SkOSWindow INHERITED;
+};
+
+#endif