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

Unified Diff: gpu/command_buffer/service/gles2_cmd_decoder_unittest_base.h

Issue 1998723002: Move code in ui/gl/* from gfx:: to gl:: (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 years, 7 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/service/gles2_cmd_decoder_unittest_base.h
diff --git a/gpu/command_buffer/service/gles2_cmd_decoder_unittest_base.h b/gpu/command_buffer/service/gles2_cmd_decoder_unittest_base.h
index c519ba58cb40a7843718f92ff16f18f51e49d7e2..a852521c695c095d8a3ffbf94ed079213766bc1a 100644
--- a/gpu/command_buffer/service/gles2_cmd_decoder_unittest_base.h
+++ b/gpu/command_buffer/service/gles2_cmd_decoder_unittest_base.h
@@ -221,7 +221,7 @@ class GLES2DecoderTestBase : public ::testing::TestWithParam<bool> {
group_->LoseContexts(reason);
}
- ::testing::StrictMock< ::gfx::MockGLInterface>* GetGLMock() const {
+ ::testing::StrictMock<::gl::MockGLInterface>* GetGLMock() const {
return gl_.get();
}
@@ -622,8 +622,8 @@ class GLES2DecoderTestBase : public ::testing::TestWithParam<bool> {
static const char* kOutputVariable1NameESSL3;
// Use StrictMock to make 100% sure we know how GL will be called.
- std::unique_ptr<::testing::StrictMock<::gfx::MockGLInterface>> gl_;
- scoped_refptr<gfx::GLSurfaceStub> surface_;
+ std::unique_ptr<::testing::StrictMock<::gl::MockGLInterface>> gl_;
+ scoped_refptr<gl::GLSurfaceStub> surface_;
scoped_refptr<GLContextMock> context_;
std::unique_ptr<MockGLES2Decoder> mock_decoder_;
std::unique_ptr<GLES2Decoder> decoder_;

Powered by Google App Engine
This is Rietveld 408576698