Index: gpu/command_buffer/tests/gl_manager.cc |
diff --git a/gpu/command_buffer/tests/gl_manager.cc b/gpu/command_buffer/tests/gl_manager.cc |
index 6b43e5b2e168a24ca0acba5b615d5a6e660f7cda..c143db8efd662c8047ff3be19210068907f49d80 100644 |
--- a/gpu/command_buffer/tests/gl_manager.cc |
+++ b/gpu/command_buffer/tests/gl_manager.cc |
@@ -158,11 +158,11 @@ void GLManager::Initialize(const GLManager::Options& options) { |
gfx::GpuPreference gpu_preference(gfx::PreferDiscreteGpu); |
std::vector<int32> attribs; |
gles2::ContextCreationAttribHelper attrib_helper; |
- attrib_helper.red_size_ = 8; |
- attrib_helper.green_size_ = 8; |
- attrib_helper.blue_size_ = 8; |
- attrib_helper.alpha_size_ = 8; |
- attrib_helper.depth_size_ = 16; |
+ attrib_helper.red_size = 8; |
+ attrib_helper.green_size = 8; |
+ attrib_helper.blue_size = 8; |
+ attrib_helper.alpha_size = 8; |
+ attrib_helper.depth_size = 16; |
attrib_helper.Serialize(&attribs); |
if (!context_group) { |