Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1157)

Unified Diff: gpu/command_buffer/client/gles2_implementation_unittest.cc

Issue 2275113002: Provide task runner to GLES2Impl / CommandBuffer at creation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@fix-cleanup4
Patch Set: cleanup Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: gpu/command_buffer/client/gles2_implementation_unittest.cc
diff --git a/gpu/command_buffer/client/gles2_implementation_unittest.cc b/gpu/command_buffer/client/gles2_implementation_unittest.cc
index a18d4b7b0a3da90a8cef5aa0c5ea49dc4cddfb39..2dd4ae7cd9f0bace6744844dd0cfe35161726070 100644
--- a/gpu/command_buffer/client/gles2_implementation_unittest.cc
+++ b/gpu/command_buffer/client/gles2_implementation_unittest.cc
@@ -487,13 +487,10 @@ class GLES2ImplementationTest : public testing::Test {
InSequence sequence;
const bool support_client_side_arrays = true;
- gl_.reset(new GLES2Implementation(helper_.get(),
- share_group,
- transfer_buffer_.get(),
- bind_generates_resource_client,
- lose_context_when_out_of_memory,
- support_client_side_arrays,
- gpu_control_.get()));
+ gl_.reset(new GLES2Implementation(
+ helper_.get(), share_group, transfer_buffer_.get(),
+ bind_generates_resource_client, lose_context_when_out_of_memory,
+ support_client_side_arrays, gpu_control_.get(), nullptr));
}
// The client should be set to something non-null.

Powered by Google App Engine
This is Rietveld 408576698