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

Unified Diff: cc/LayerTextureUpdater.cpp

Issue 10947047: Fix remaining cc files to compile with Clang (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: All remaining files 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 side-by-side diff with in-line comments
Download patch
Index: cc/LayerTextureUpdater.cpp
diff --git a/cc/CCRenderer.cpp b/cc/LayerTextureUpdater.cpp
similarity index 54%
copy from cc/CCRenderer.cpp
copy to cc/LayerTextureUpdater.cpp
index 69c04dfbfc14941aab52c54bb075e08f0c02baa6..ae209d699f77f42f82061d5f1557cd3a88f7722a 100644
--- a/cc/CCRenderer.cpp
+++ b/cc/LayerTextureUpdater.cpp
@@ -4,18 +4,17 @@
#include "config.h"
-#include "CCRenderer.h"
+#include "LayerTextureUpdater.h"
namespace cc {
-bool CCRenderer::haveCachedResourcesForRenderPassId(CCRenderPass::Id) const
+LayerTextureUpdater::Texture::Texture(PassOwnPtr<CCPrioritizedTexture> texture)
+ : m_texture(texture)
{
- return false;
}
-bool CCRenderer::isContextLost()
+LayerTextureUpdater::Texture::~Texture()
{
- return false;
}
}

Powered by Google App Engine
This is Rietveld 408576698