1 // Copyright 2018 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 #ifndef CHROME_BROWSER_VR_TEST_VR_GL_TEST_SUITE_H_
6 #define CHROME_BROWSER_VR_TEST_VR_GL_TEST_SUITE_H_
7 
8 #include "chrome/browser/vr/test/vr_test_suite.h"
9 
10 namespace vr {
11 
12 class VrGlTestSuite : public VrTestSuite {
13  public:
14   VrGlTestSuite(int argc, char** argv);
15   void Initialize() override;
16   void Shutdown() override;
17 };
18 
19 }  // namespace vr
20 
21 #endif  // CHROME_BROWSER_VR_TEST_VR_GL_TEST_SUITE_H_
22