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

Side by Side Diff: cc/io_surface_layer.h

Issue 11189011: cc: Remove the temporary header files that aren't prefixed with CC* (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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/image_layer.cc ('k') | cc/io_surface_layer.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
6 #ifndef IOSurfaceLayerChromium_h 5 #ifndef IOSurfaceLayerChromium_h
7 #define IOSurfaceLayerChromium_h 6 #define IOSurfaceLayerChromium_h
8 7
9 #include "LayerChromium.h" 8 #include "cc/layer.h"
10 9
11 namespace cc { 10 namespace cc {
12 11
13 class IOSurfaceLayerChromium : public LayerChromium { 12 class IOSurfaceLayerChromium : public LayerChromium {
14 public: 13 public:
15 static scoped_refptr<IOSurfaceLayerChromium> create(); 14 static scoped_refptr<IOSurfaceLayerChromium> create();
16 15
17 void setIOSurfaceProperties(uint32_t ioSurfaceId, const IntSize&); 16 void setIOSurfaceProperties(uint32_t ioSurfaceId, const IntSize&);
18 17
19 virtual scoped_ptr<CCLayerImpl> createCCLayerImpl() OVERRIDE; 18 virtual scoped_ptr<CCLayerImpl> createCCLayerImpl() OVERRIDE;
20 virtual bool drawsContent() const OVERRIDE; 19 virtual bool drawsContent() const OVERRIDE;
21 virtual void pushPropertiesTo(CCLayerImpl*) OVERRIDE; 20 virtual void pushPropertiesTo(CCLayerImpl*) OVERRIDE;
22 21
23 protected: 22 protected:
24 IOSurfaceLayerChromium(); 23 IOSurfaceLayerChromium();
25 24
26 private: 25 private:
27 virtual ~IOSurfaceLayerChromium(); 26 virtual ~IOSurfaceLayerChromium();
28 27
29 uint32_t m_ioSurfaceId; 28 uint32_t m_ioSurfaceId;
30 IntSize m_ioSurfaceSize; 29 IntSize m_ioSurfaceSize;
31 }; 30 };
32 31
33 } 32 }
34 #endif 33 #endif
OLDNEW
« no previous file with comments | « cc/image_layer.cc ('k') | cc/io_surface_layer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698