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

Side by Side Diff: gpu/command_buffer/service/vertex_attrib_manager_unittest.cc

Issue 1859703002: convert //gpu to std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: undo part of clang-format Created 4 years, 8 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "gpu/command_buffer/service/vertex_attrib_manager.h" 5 #include "gpu/command_buffer/service/vertex_attrib_manager.h"
6 6
7 #include <stdint.h> 7 #include <stdint.h>
8 8
9 #include "base/memory/scoped_ptr.h" 9 #include <memory>
no sievers 2016/04/05 19:02:41 unused
Mostyn Bramley-Moore 2016/04/05 21:35:32 Removed.
10
10 #include "gpu/command_buffer/service/buffer_manager.h" 11 #include "gpu/command_buffer/service/buffer_manager.h"
11 #include "gpu/command_buffer/service/error_state_mock.h" 12 #include "gpu/command_buffer/service/error_state_mock.h"
12 #include "gpu/command_buffer/service/feature_info.h" 13 #include "gpu/command_buffer/service/feature_info.h"
13 #include "gpu/command_buffer/service/gpu_service_test.h" 14 #include "gpu/command_buffer/service/gpu_service_test.h"
14 #include "gpu/command_buffer/service/test_helper.h" 15 #include "gpu/command_buffer/service/test_helper.h"
15 #include "testing/gtest/include/gtest/gtest.h" 16 #include "testing/gtest/include/gtest/gtest.h"
16 #include "ui/gl/gl_mock.h" 17 #include "ui/gl/gl_mock.h"
17 18
18 using ::testing::Pointee; 19 using ::testing::Pointee;
19 using ::testing::_; 20 using ::testing::_;
(...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after
221 buffer_manager.Destroy(false); 222 buffer_manager.Destroy(false);
222 } 223 }
223 224
224 // TODO(gman): Test ValidateBindings 225 // TODO(gman): Test ValidateBindings
225 // TODO(gman): Test ValidateBindings with client side arrays. 226 // TODO(gman): Test ValidateBindings with client side arrays.
226 227
227 } // namespace gles2 228 } // namespace gles2
228 } // namespace gpu 229 } // namespace gpu
229 230
230 231
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698