summaryrefslogtreecommitdiffstats
path: root/ppapi/tests/test_case.h
diff options
context:
space:
mode:
Diffstat (limited to 'ppapi/tests/test_case.h')
-rw-r--r--ppapi/tests/test_case.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/ppapi/tests/test_case.h b/ppapi/tests/test_case.h
index 5bf295e..975e666 100644
--- a/ppapi/tests/test_case.h
+++ b/ppapi/tests/test_case.h
@@ -34,7 +34,8 @@ class TestCase {
virtual ~TestCase();
// Optionally override to do testcase specific initialization.
- virtual bool Init() { return true; }
+ // Default implementation just returns true.
+ virtual bool Init();
// Override to implement the test. It will be called after the plugin is
// first displayed.