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

Unified Diff: webkit/compositor_bindings/web_external_texture_layer_impl.cc

Issue 12670009: cc: Chromify TextureLayerClient (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase 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: webkit/compositor_bindings/web_external_texture_layer_impl.cc
diff --git a/webkit/compositor_bindings/web_external_texture_layer_impl.cc b/webkit/compositor_bindings/web_external_texture_layer_impl.cc
index 0b270f4cb58cac3ee2e392485aefdfbd82754f70..1cc733cbd3db6318c1eb68dd6cd104b4e7456823 100644
--- a/webkit/compositor_bindings/web_external_texture_layer_impl.cc
+++ b/webkit/compositor_bindings/web_external_texture_layer_impl.cc
@@ -82,14 +82,14 @@ class WebTextureUpdaterImpl : public WebKit::WebTextureUpdater {
ResourceUpdateQueue* queue_;
};
-unsigned WebExternalTextureLayerImpl::prepareTexture(
- ResourceUpdateQueue& queue) {
+unsigned WebExternalTextureLayerImpl::PrepareTexture(
+ ResourceUpdateQueue* queue) {
DCHECK(client_);
- WebTextureUpdaterImpl updater_impl(&queue);
+ WebTextureUpdaterImpl updater_impl(queue);
return client_->prepareTexture(updater_impl);
}
-WebKit::WebGraphicsContext3D* WebExternalTextureLayerImpl::context() {
+WebKit::WebGraphicsContext3D* WebExternalTextureLayerImpl::Context3d() {
DCHECK(client_);
return client_->context();
}
« no previous file with comments | « webkit/compositor_bindings/web_external_texture_layer_impl.h ('k') | webkit/plugins/ppapi/ppapi_plugin_instance.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698