Index: gpu/command_buffer/tests/gl_program_unittest.cc |
diff --git a/gpu/command_buffer/tests/gl_program_unittest.cc b/gpu/command_buffer/tests/gl_program_unittest.cc |
index ef11ae4955fbfc814956c03ff1c8167dce24f2b5..cc6a03963818128de1db4ac1c479855820a0a0f0 100644 |
--- a/gpu/command_buffer/tests/gl_program_unittest.cc |
+++ b/gpu/command_buffer/tests/gl_program_unittest.cc |
@@ -21,7 +21,6 @@ class GLProgramTest : public testing::Test { |
void SetUp() override { gl_.Initialize(GLManager::Options()); } |
void TearDown() override { gl_.Destroy(); } |
- |
GLManager gl_; |
}; |
@@ -29,7 +28,7 @@ class WebGLProgramTest : public GLProgramTest { |
protected: |
void SetUp() override { |
GLManager::Options options; |
- options.webgl_version = 1; |
+ options.context_type = GLManager::CONTEXT_TYPE_WEBGL1; |
gl_.Initialize(options); |
} |
}; |