Index: gpu/command_buffer/client/gles2_interface.cc |
diff --git a/gpu/command_buffer/client/gles2_cmd_helper.cc b/gpu/command_buffer/client/gles2_interface.cc |
similarity index 58% |
copy from gpu/command_buffer/client/gles2_cmd_helper.cc |
copy to gpu/command_buffer/client/gles2_interface.cc |
index 8264941abcb89558c719255d09272eca0ee5b080..b09e5f8b55aee3302ccc40d046c08de84544ee49 100644 |
--- a/gpu/command_buffer/client/gles2_cmd_helper.cc |
+++ b/gpu/command_buffer/client/gles2_interface.cc |
@@ -2,20 +2,18 @@ |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
-#include "../client/gles2_cmd_helper.h" |
+#include "../client/gles2_interface.h" |
namespace gpu { |
namespace gles2 { |
-GLES2CmdHelper::GLES2CmdHelper(CommandBuffer* command_buffer) |
- : CommandBufferHelper(command_buffer) { |
+GLES2Interface::GLES2Interface() { |
} |
-GLES2CmdHelper::~GLES2CmdHelper() { |
+GLES2Interface::~GLES2Interface() { |
} |
} // namespace gles2 |
} // namespace gpu |
- |