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

Unified Diff: ui/compositor/layer.cc

Issue 12670009: cc: Chromify TextureLayerClient (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 9 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: ui/compositor/layer.cc
diff --git a/ui/compositor/layer.cc b/ui/compositor/layer.cc
index 1dc03700706feb95e6b43269160b3699a07412da..8a2a9f341f9c40467a64faff5508c86053fdb5b9 100644
--- a/ui/compositor/layer.cc
+++ b/ui/compositor/layer.cc
@@ -614,12 +614,12 @@ void Layer::PaintContents(SkCanvas* sk_canvas,
canvas->Restore();
}
-unsigned Layer::prepareTexture(cc::ResourceUpdateQueue&) {
+unsigned Layer::PrepareTexture(cc::ResourceUpdateQueue*) {
danakj 2013/03/17 16:15:10 variable name
enne (OOO) 2013/03/17 19:06:41 Done.
DCHECK(texture_layer_);
return texture_->PrepareTexture();
}
-WebKit::WebGraphicsContext3D* Layer::context() {
+WebKit::WebGraphicsContext3D* Layer::Context() {
DCHECK(texture_layer_);
return texture_->HostContext3D();
}

Powered by Google App Engine
This is Rietveld 408576698