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

Unified Diff: ash/devtools/ui_element_delegate.h

Issue 2776543002: Create a unified UIElement interface for Widget, View and Window. (Closed)
Patch Set: . Created 3 years, 7 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 | « ash/devtools/ui_element.cc ('k') | ash/devtools/view_element.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/devtools/ui_element_delegate.h
diff --git a/ash/devtools/ui_element_delegate.h b/ash/devtools/ui_element_delegate.h
new file mode 100644
index 0000000000000000000000000000000000000000..369b90b7c4096bd588083689ddb1b53d77725ecf
--- /dev/null
+++ b/ash/devtools/ui_element_delegate.h
@@ -0,0 +1,44 @@
+// Copyright 2017 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.
+
+#ifndef ASH_DEVTOOLS_UI_ELEMENT_DELEGATE_H_
+#define ASH_DEVTOOLS_UI_ELEMENT_DELEGATE_H_
+
+#include <vector>
+
+#include "ash/ash_export.h"
+#include "base/macros.h"
+#include "ui/aura/window.h"
+
+namespace ash {
+namespace devtools {
+
+class UIElement;
+
+class ASH_EXPORT UIElementDelegate {
+ public:
+ UIElementDelegate(){};
+ virtual ~UIElementDelegate(){};
+
+ virtual void OnUIElementAdded(UIElement* parent, UIElement* child) = 0;
+
+ // Move |child| to different sibling index under |parent| in DOM tree.
+ virtual void OnUIElementReordered(UIElement* parent, UIElement* child) = 0;
+
+ // Remove ui_element in DOM tree.
+ virtual void OnUIElementRemoved(UIElement* ui_element) = 0;
+
+ // Update CSS agent when bounds change.
+ virtual void OnUIElementBoundsChanged(UIElement* ui_element) = 0;
+
+ // Return |window| highlighting status.
+ virtual bool IsHighlightingWindow(aura::Window* window) = 0;
+
+ DISALLOW_COPY_AND_ASSIGN(UIElementDelegate);
+};
+
+} // namespace devtools
+} // namespace ash
+
+#endif // ASH_DEVTOOLS_UI_ELEMENT_DELEGATE_H_
« no previous file with comments | « ash/devtools/ui_element.cc ('k') | ash/devtools/view_element.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698