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

Unified Diff: services/ui/ws/server_window.cc

Issue 2480203002: ui: Cleanup class/struct forward declarations (Closed)
Patch Set: Sync CL to position 430550 Created 4 years, 1 month 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 | « services/ui/ws/platform_display.cc ('k') | services/ui/ws/server_window_compositor_frame_sink.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: services/ui/ws/server_window.cc
diff --git a/services/ui/ws/server_window.cc b/services/ui/ws/server_window.cc
index f24bee147d8a3c9e2e40049d40f2cb65fdbe8ba1..95b84e7c6121f88aacac3f6c3d55b89369183794 100644
--- a/services/ui/ws/server_window.cc
+++ b/services/ui/ws/server_window.cc
@@ -288,7 +288,6 @@ void ServerWindow::SetOpacity(float value) {
return;
float old_opacity = opacity_;
opacity_ = value;
- delegate_->OnScheduleWindowPaint(this);
for (auto& observer : observers_)
observer.OnWindowOpacityChanged(this, old_opacity, opacity_);
}
@@ -314,7 +313,6 @@ void ServerWindow::SetTransform(const gfx::Transform& transform) {
return;
transform_ = transform;
- delegate_->OnScheduleWindowPaint(this);
}
void ServerWindow::SetProperty(const std::string& name,
@@ -381,7 +379,6 @@ void ServerWindow::SetUnderlayOffset(const gfx::Vector2d& offset) {
return;
underlay_offset_ = offset;
- delegate_->OnScheduleWindowPaint(this);
}
void ServerWindow::OnEmbeddedAppDisconnected() {
« no previous file with comments | « services/ui/ws/platform_display.cc ('k') | services/ui/ws/server_window_compositor_frame_sink.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698