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

Unified Diff: cc/trees/layer_tree_impl.h

Issue 12676029: cc: Fix capitalization style in chromified files. (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: cc/trees/layer_tree_impl.h
diff --git a/cc/trees/layer_tree_impl.h b/cc/trees/layer_tree_impl.h
index a14541d93473cd5c04328494496d7b93a31d2d68..13bbc8d6585f32f8e179450170a1ad911b9ea08d 100644
--- a/cc/trees/layer_tree_impl.h
+++ b/cc/trees/layer_tree_impl.h
@@ -42,8 +42,8 @@ class CC_EXPORT LayerTreeImpl {
public:
typedef std::vector<LayerImpl*> LayerList;
- static scoped_ptr<LayerTreeImpl> create(LayerTreeHostImpl* layer_tree_host_impl)
- {
+ static scoped_ptr<LayerTreeImpl> create(
+ LayerTreeHostImpl* layer_tree_host_impl) {
return make_scoped_ptr(new LayerTreeImpl(layer_tree_host_impl));
}
virtual ~LayerTreeImpl();
@@ -51,7 +51,7 @@ class CC_EXPORT LayerTreeImpl {
// Methods called by the layer tree that pass-through or access LTHI.
// ---------------------------------------------------------------------------
const LayerTreeSettings& settings() const;
- const RendererCapabilities& rendererCapabilities() const;
+ const RendererCapabilities& GetRendererCapabilities() const;
OutputSurface* output_surface() const;
ResourceProvider* resource_provider() const;
TileManager* tile_manager() const;
@@ -172,7 +172,7 @@ class CC_EXPORT LayerTreeImpl {
AnimationRegistrar* animationRegistrar() const;
- void PushPersistedState(LayerTreeImpl* pendingTree);
+ void PushPersistedState(LayerTreeImpl* pending_tree);
void DidBecomeActive();

Powered by Google App Engine
This is Rietveld 408576698