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

Side by Side Diff: cc/output/gl_renderer_unittest.cc

Issue 12912006: Part 4 of cc/ directory shuffles: output (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 9 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 | Annotate | Revision Log
OLDNEW
1 // Copyright 2012 The Chromium Authors. All rights reserved. 1 // Copyright 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 "cc/gl_renderer.h" 5 #include "cc/output/gl_renderer.h"
6 6
7 #include "cc/compositor_frame_metadata.h"
8 #include "cc/draw_quad.h" 7 #include "cc/draw_quad.h"
8 #include "cc/output/compositor_frame_metadata.h"
9 #include "cc/prioritized_resource_manager.h" 9 #include "cc/prioritized_resource_manager.h"
10 #include "cc/resource_provider.h" 10 #include "cc/resource_provider.h"
11 #include "cc/test/fake_impl_proxy.h" 11 #include "cc/test/fake_impl_proxy.h"
12 #include "cc/test/fake_layer_tree_host_impl.h" 12 #include "cc/test/fake_layer_tree_host_impl.h"
13 #include "cc/test/fake_output_surface.h" 13 #include "cc/test/fake_output_surface.h"
14 #include "cc/test/pixel_test.h" 14 #include "cc/test/pixel_test.h"
15 #include "cc/test/render_pass_test_common.h" 15 #include "cc/test/render_pass_test_common.h"
16 #include "cc/test/render_pass_test_utils.h" 16 #include "cc/test/render_pass_test_utils.h"
17 #include "cc/test/test_web_graphics_context_3d.h" 17 #include "cc/test/test_web_graphics_context_3d.h"
18 #include "testing/gmock/include/gmock/gmock.h" 18 #include "testing/gmock/include/gmock/gmock.h"
(...skipping 850 matching lines...) Expand 10 before | Expand all | Expand 10 after
869 869
870 TEST_F(MockOutputSurfaceTestWithSendCompositorFrame, DrawFrame) 870 TEST_F(MockOutputSurfaceTestWithSendCompositorFrame, DrawFrame)
871 { 871 {
872 EXPECT_CALL(m_outputSurface, SendFrameToParentCompositor(_)) 872 EXPECT_CALL(m_outputSurface, SendFrameToParentCompositor(_))
873 .Times(1); 873 .Times(1);
874 DrawFrame(); 874 DrawFrame();
875 } 875 }
876 876
877 } // namespace 877 } // namespace
878 } // namespace cc 878 } // namespace cc
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698