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

Side by Side Diff: webkit/compositor_bindings/web_compositor_support_output_surface.cc

Issue 11777025: cc: Implement DelegatingRender::drawFrame() method. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: for-landing Created 7 years, 11 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
« no previous file with comments | « webkit/compositor_bindings/web_compositor_support_output_surface.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 "third_party/WebKit/Source/Platform/chromium/public/WebGraphicsContext3 D.h" 5 #include "third_party/WebKit/Source/Platform/chromium/public/WebGraphicsContext3 D.h"
6 #include "webkit/compositor_bindings/web_compositor_support_output_surface.h" 6 #include "webkit/compositor_bindings/web_compositor_support_output_surface.h"
7 7
8 namespace webkit { 8 namespace webkit {
9 9
10 WebCompositorSupportOutputSurface::WebCompositorSupportOutputSurface( 10 WebCompositorSupportOutputSurface::WebCompositorSupportOutputSurface(
(...skipping 23 matching lines...) Expand all
34 34
35 WebKit::WebGraphicsContext3D* WebCompositorSupportOutputSurface::Context3D() con st { 35 WebKit::WebGraphicsContext3D* WebCompositorSupportOutputSurface::Context3D() con st {
36 return context3d_.get(); 36 return context3d_.get();
37 } 37 }
38 38
39 cc::SoftwareOutputDevice* WebCompositorSupportOutputSurface::SoftwareDevice() co nst { 39 cc::SoftwareOutputDevice* WebCompositorSupportOutputSurface::SoftwareDevice() co nst {
40 return software_device_.get(); 40 return software_device_.get();
41 } 41 }
42 42
43 void WebCompositorSupportOutputSurface::SendFrameToParentCompositor( 43 void WebCompositorSupportOutputSurface::SendFrameToParentCompositor(
44 const cc::CompositorFrame&) { 44 cc::CompositorFrame*) {
45 // No support for delegated renderers in DumpRenderTree. 45 // No support for delegated renderers in DumpRenderTree.
46 NOTREACHED(); 46 NOTREACHED();
47 } 47 }
48 48
49 } // namespace webkit 49 } // namespace webkit
OLDNEW
« no previous file with comments | « webkit/compositor_bindings/web_compositor_support_output_surface.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698