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

Unified Diff: ash/wm/forwarding_layer_delegate.h

Issue 2129773002: [CrOS] Initial rough cut of alt-tab window cycling UI. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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: ash/wm/forwarding_layer_delegate.h
diff --git a/ash/wm/forwarding_layer_delegate.h b/ash/wm/forwarding_layer_delegate.h
new file mode 100644
index 0000000000000000000000000000000000000000..71c152209b73ebd78ca4660fdb5abfa71f3d3f83
--- /dev/null
+++ b/ash/wm/forwarding_layer_delegate.h
@@ -0,0 +1,40 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "base/macros.h"
+#include "ui/compositor/layer_delegate.h"
+
+namespace ui {
+class Layer;
+}
+
+namespace ash {
+
+class WmWindow;
+
+// A layer delegate to paint the content of the recreated layers by delegating
+// the paint request to the original delegate. It checks if the orignal delegate
Daniel Erat 2016/07/06 22:04:47 nit: s/orignal/original/
Evan Stade 2016/07/06 23:02:59 Done.
+// is still valid by traversing the original layers.
+class ForwardingLayerDelegate : public ui::LayerDelegate {
+ public:
+ ForwardingLayerDelegate(WmWindow* original_window,
+ ui::LayerDelegate* delegate);
+ ~ForwardingLayerDelegate() override;
+
+ private:
+ // ui:LayerDelegate:
+ void OnPaintLayer(const ui::PaintContext& context) override;
+ void OnDelegatedFrameDamage(const gfx::Rect& damage_rect_in_dip) override;
+ void OnDeviceScaleFactorChanged(float device_scale_factor) override;
+ base::Closure PrepareForLayerBoundsChange() override;
+
+ bool IsDelegateValid(ui::Layer* layer);
+
+ WmWindow* original_window_;
+ ui::LayerDelegate* original_delegate_;
+
+ DISALLOW_COPY_AND_ASSIGN(ForwardingLayerDelegate);
+};
+
+} // namespace ash

Powered by Google App Engine
This is Rietveld 408576698