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

Unified Diff: ui/gfx/compositor/compositor.cc

Issue 8360018: Revert 106606 - Use WebKit compositor in ui::Layer (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 2 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 | « ui/gfx/compositor/compositor.h ('k') | ui/gfx/compositor/compositor.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/gfx/compositor/compositor.cc
===================================================================
--- ui/gfx/compositor/compositor.cc (revision 106614)
+++ ui/gfx/compositor/compositor.cc (working copy)
@@ -25,15 +25,10 @@
Compositor::~Compositor() {
}
-void Compositor::ScheduleDraw() {
- delegate_->ScheduleDraw();
-}
-
void Compositor::SetRootLayer(Layer* root_layer) {
root_layer_ = root_layer;
if (!root_layer_->GetCompositor())
root_layer_->SetCompositor(this);
- OnRootLayerChanged();
}
void Compositor::Draw(bool force_clear) {
@@ -41,7 +36,7 @@
return;
NotifyStart(force_clear);
- DrawTree();
+ root_layer_->DrawTree();
NotifyEnd();
}
@@ -57,14 +52,6 @@
return observer_list_.HasObserver(observer);
}
-void Compositor::OnRootLayerChanged() {
- ScheduleDraw();
-}
-
-void Compositor::DrawTree() {
- root_layer_->DrawTree();
-}
-
void Compositor::NotifyStart(bool clear) {
OnNotifyStart(clear);
}
« no previous file with comments | « ui/gfx/compositor/compositor.h ('k') | ui/gfx/compositor/compositor.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698