| OLD | NEW |
| 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/gles2_cmd_decoder.h" | 5 #include "gpu/command_buffer/service/gles2_cmd_decoder.h" |
| 6 | 6 |
| 7 #include "gpu/command_buffer/common/gles2_cmd_format.h" | 7 #include "gpu/command_buffer/common/gles2_cmd_format.h" |
| 8 #include "gpu/command_buffer/common/gles2_cmd_utils.h" | 8 #include "gpu/command_buffer/common/gles2_cmd_utils.h" |
| 9 #include "gpu/command_buffer/service/gles2_cmd_decoder_unittest_base.h" | 9 #include "gpu/command_buffer/service/gles2_cmd_decoder_unittest_base.h" |
| 10 #include "gpu/command_buffer/service/cmd_buffer_engine.h" | 10 #include "gpu/command_buffer/service/cmd_buffer_engine.h" |
| 11 #include "gpu/command_buffer/service/context_group.h" | 11 #include "gpu/command_buffer/service/context_group.h" |
| 12 #include "gpu/command_buffer/service/program_manager.h" | 12 #include "gpu/command_buffer/service/program_manager.h" |
| 13 #include "gpu/command_buffer/service/test_helper.h" | 13 #include "gpu/command_buffer/service/test_helper.h" |
| 14 #include "testing/gtest/include/gtest/gtest.h" | 14 #include "testing/gtest/include/gtest/gtest.h" |
| 15 #include "ui/gl/gl_mock.h" | 15 #include "ui/gl/gl_mock.h" |
| 16 | 16 |
| 17 using ::gfx::MockGLInterface; | 17 using ::gl::MockGLInterface; |
| 18 using ::testing::_; | 18 using ::testing::_; |
| 19 using ::testing::DoAll; | 19 using ::testing::DoAll; |
| 20 using ::testing::InSequence; | 20 using ::testing::InSequence; |
| 21 using ::testing::MatcherCast; | 21 using ::testing::MatcherCast; |
| 22 using ::testing::Pointee; | 22 using ::testing::Pointee; |
| 23 using ::testing::Return; | 23 using ::testing::Return; |
| 24 using ::testing::SetArrayArgument; | 24 using ::testing::SetArrayArgument; |
| 25 using ::testing::SetArgumentPointee; | 25 using ::testing::SetArgumentPointee; |
| 26 using ::testing::StrEq; | 26 using ::testing::StrEq; |
| 27 | 27 |
| (...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 186 .Times(1) | 186 .Times(1) |
| 187 .RetiresOnSaturation(); | 187 .RetiresOnSaturation(); |
| 188 } | 188 } |
| 189 } | 189 } |
| 190 | 190 |
| 191 #include "gpu/command_buffer/service/gles2_cmd_decoder_unittest_1_autogen.h" | 191 #include "gpu/command_buffer/service/gles2_cmd_decoder_unittest_1_autogen.h" |
| 192 | 192 |
| 193 } // namespace gles2 | 193 } // namespace gles2 |
| 194 } // namespace gpu | 194 } // namespace gpu |
| 195 | 195 |
| OLD | NEW |