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

Unified Diff: tools/VisualBench/VisualModule.h

Issue 2018603003: Remove VisualBench and its Android implementation. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 4 years, 7 months 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tools/VisualBench/VisualLightweightBenchModule.cpp ('k') | tools/VisualBench/VisualSKPBench.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/VisualBench/VisualModule.h
diff --git a/tools/VisualBench/VisualModule.h b/tools/VisualBench/VisualModule.h
deleted file mode 100644
index 2f8379356f2a04b48a43ccbd67da7472e1177117..0000000000000000000000000000000000000000
--- 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
« no previous file with comments | « tools/VisualBench/VisualLightweightBenchModule.cpp ('k') | tools/VisualBench/VisualSKPBench.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698