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

Unified Diff: cc/picture_image_layer_impl.cc

Issue 12774006: cc: Chromify Layer and LayerImpl classes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: MoreAndroidCompilings 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
« no previous file with comments | « cc/picture_image_layer_impl.h ('k') | cc/picture_layer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/picture_image_layer_impl.cc
diff --git a/cc/picture_image_layer_impl.cc b/cc/picture_image_layer_impl.cc
index 359a93def2f2fd4ade6b4c8be8f2570dfce22ec0..5dd4652157346bce4f599aa89dadbd717908227c 100644
--- a/cc/picture_image_layer_impl.cc
+++ b/cc/picture_image_layer_impl.cc
@@ -16,19 +16,19 @@ PictureImageLayerImpl::PictureImageLayerImpl(LayerTreeImpl* treeImpl, int id)
PictureImageLayerImpl::~PictureImageLayerImpl() {
}
-const char* PictureImageLayerImpl::layerTypeAsString() const {
+const char* PictureImageLayerImpl::LayerTypeAsString() const {
return "PictureImageLayer";
}
-scoped_ptr<LayerImpl> PictureImageLayerImpl::createLayerImpl(
+scoped_ptr<LayerImpl> PictureImageLayerImpl::CreateLayerImpl(
LayerTreeImpl* treeImpl) {
- return PictureImageLayerImpl::create(treeImpl, id()).PassAs<LayerImpl>();
+ return PictureImageLayerImpl::Create(treeImpl, id()).PassAs<LayerImpl>();
}
-void PictureImageLayerImpl::getDebugBorderProperties(
+void PictureImageLayerImpl::GetDebugBorderProperties(
SkColor* color, float* width) const {
*color = DebugColors::ImageLayerBorderColor();
- *width = DebugColors::ImageLayerBorderWidth(layerTreeImpl());
+ *width = DebugColors::ImageLayerBorderWidth(layer_tree_impl());
}
void PictureImageLayerImpl::CalculateRasterContentsScale(
« no previous file with comments | « cc/picture_image_layer_impl.h ('k') | cc/picture_layer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698