aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/VisualBench/VisualModule.h
diff options
context:
space:
mode:
authorGravatar djsollen <djsollen@google.com>2016-05-27 05:39:29 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2016-05-27 05:39:29 -0700
commit41457927364d23ed363bc3ba25025f8a36f1b8d4 (patch)
treee736181097afaba91d7cca900650e0c1b314b514 /tools/VisualBench/VisualModule.h
parent93ca884879e3469b46d32c36deb7b46f2fff1c0c (diff)
Remove VisualBench and its Android implementation.
Diffstat (limited to 'tools/VisualBench/VisualModule.h')
-rw-r--r--tools/VisualBench/VisualModule.h34
1 files changed, 0 insertions, 34 deletions
diff --git a/tools/VisualBench/VisualModule.h b/tools/VisualBench/VisualModule.h
deleted file mode 100644
index 2f8379356f..0000000000
--- a/tools/VisualBench/VisualModule.h
+++ /dev/null
@@ -1,34 +0,0 @@
-/*
- * 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 VisualModule_DEFINED
-#define VisualModule_DEFINED
-
-#include "SkRefCnt.h"
-
-class SkCanvas;
-
-/*
- * VisualModule is the base class for all of the various types of activities VisualBench supports.
- *
- * The common theme tying these all together is they need to display an image to the screen. Later,
- * on we some modules will also be interactive
- */
-class VisualModule : public SkRefCnt {
-public:
- virtual ~VisualModule() {}
-
- virtual void draw(SkCanvas* canvas)=0;
-
- virtual bool onHandleChar(SkUnichar unichar) = 0;
-
-private:
- typedef SkRefCnt INHERITED;
-};
-
-#endif