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

Side by Side Diff: cc/io_surface_layer_impl.cc

Issue 11225040: cc: Remove CC*.h temporary includes, part 5/4. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixes Created 8 years, 2 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 | « cc/io_surface_layer_impl.h ('k') | cc/keyframed_animation_curve.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 "config.h" 5 #include "config.h"
6 6
7 #include "CCIOSurfaceLayerImpl.h" 7 #include "cc/io_surface_layer_impl.h"
8 8
9 #include "CCGraphicsContext.h" 9 #include "CCGraphicsContext.h"
10 #include "CCIOSurfaceDrawQuad.h"
11 #include "base/stringprintf.h" 10 #include "base/stringprintf.h"
12 #include "cc/gl_renderer.h" // For the GLC() macro. 11 #include "cc/gl_renderer.h" // For the GLC() macro.
12 #include "cc/io_surface_draw_quad.h"
13 #include "cc/layer_tree_host_impl.h" 13 #include "cc/layer_tree_host_impl.h"
14 #include "cc/quad_sink.h" 14 #include "cc/quad_sink.h"
15 #include "third_party/khronos/GLES2/gl2.h" 15 #include "third_party/khronos/GLES2/gl2.h"
16 #include "third_party/khronos/GLES2/gl2ext.h" 16 #include "third_party/khronos/GLES2/gl2ext.h"
17 #include <public/WebGraphicsContext3D.h> 17 #include <public/WebGraphicsContext3D.h>
18 18
19 namespace cc { 19 namespace cc {
20 20
21 CCIOSurfaceLayerImpl::CCIOSurfaceLayerImpl(int id) 21 CCIOSurfaceLayerImpl::CCIOSurfaceLayerImpl(int id)
22 : CCLayerImpl(id) 22 : CCLayerImpl(id)
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
106 m_ioSurfaceId = ioSurfaceId; 106 m_ioSurfaceId = ioSurfaceId;
107 m_ioSurfaceSize = size; 107 m_ioSurfaceSize = size;
108 } 108 }
109 109
110 const char* CCIOSurfaceLayerImpl::layerTypeAsString() const 110 const char* CCIOSurfaceLayerImpl::layerTypeAsString() const
111 { 111 {
112 return "IOSurfaceLayer"; 112 return "IOSurfaceLayer";
113 } 113 }
114 114
115 } 115 }
OLDNEW
« no previous file with comments | « cc/io_surface_layer_impl.h ('k') | cc/keyframed_animation_curve.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698