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

Side by Side Diff: cc/TextureLayerChromium.h

Issue 10914268: Change cc files from namespace WebCore to cc (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased Created 8 years, 3 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/TextureCopier.cpp ('k') | cc/TextureLayerChromium.cpp » ('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 2010 The Chromium Authors. All rights reserved. 1 // Copyright 2010 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 #ifndef TextureLayerChromium_h 5 #ifndef TextureLayerChromium_h
6 #define TextureLayerChromium_h 6 #define TextureLayerChromium_h
7 7
8 #if USE(ACCELERATED_COMPOSITING) 8 #if USE(ACCELERATED_COMPOSITING)
9 9
10 #include "LayerChromium.h" 10 #include "LayerChromium.h"
11 11
12 namespace WebKit { 12 namespace WebKit {
13 class WebGraphicsContext3D; 13 class WebGraphicsContext3D;
14 } 14 }
15 15
16 namespace WebCore { 16 namespace cc {
17 17
18 class TextureLayerChromiumClient; 18 class TextureLayerChromiumClient;
19 19
20 // A Layer containing a the rendered output of a plugin instance. 20 // A Layer containing a the rendered output of a plugin instance.
21 class TextureLayerChromium : public LayerChromium { 21 class TextureLayerChromium : public LayerChromium {
22 public: 22 public:
23 // If this texture layer requires special preparation logic for each frame d riven by 23 // If this texture layer requires special preparation logic for each frame d riven by
24 // the compositor, pass in a non-nil client. Pass in a nil client pointer if texture updates 24 // the compositor, pass in a non-nil client. Pass in a nil client pointer if texture updates
25 // are driven by an external process. 25 // are driven by an external process.
26 static PassRefPtr<TextureLayerChromium> create(TextureLayerChromiumClient*); 26 static PassRefPtr<TextureLayerChromium> create(TextureLayerChromiumClient*);
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 bool m_rateLimitContext; 68 bool m_rateLimitContext;
69 bool m_contextLost; 69 bool m_contextLost;
70 70
71 unsigned m_textureId; 71 unsigned m_textureId;
72 }; 72 };
73 73
74 } 74 }
75 #endif // USE(ACCELERATED_COMPOSITING) 75 #endif // USE(ACCELERATED_COMPOSITING)
76 76
77 #endif 77 #endif
OLDNEW
« no previous file with comments | « cc/TextureCopier.cpp ('k') | cc/TextureLayerChromium.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698