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

Unified Diff: ash/devtools/ui_element_delegate.h

Issue 2776543002: Create a unified UIElement interface for Widget, View and Window. (Closed)
Patch Set: nits 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
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..c74abb57202e14d06f8e0450bf7a3318e0d2c5a6
--- /dev/null
+++ b/ash/devtools/ui_element_delegate.h
@@ -0,0 +1,43 @@
+// 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(){};
+ ~UIElementDelegate(){};
+ // Parent adds child node right after prev_sibling node.
+ virtual void OnUIElementAdded(UIElement* parent,
+ UIElement* child,
+ UIElement* prev_sibling);
+ // Parent moves child node right after prev_sibling node.
+ virtual void OnUIElementReordered(UIElement* parent,
+ UIElement* child,
+ UIElement* prev_sibling);
+ virtual void RemoveNodeIdMap(UIElement* ui_element);
+ // Retun true if element is sucessfully removed, false otherwise.
+ virtual bool OnUIElementRemoved(UIElement* ui_element);
+ virtual void OnUIElementBoundsChanged(UIElement* ui_element);
+ virtual bool IsHighlightingWindow(aura::Window* window);
+
+ DISALLOW_COPY_AND_ASSIGN(UIElementDelegate);
+};
+
+} // namespace devtools
+} // namespace ash
+
+#endif // ASH_DEVTOOLS_UI_ELEMENT_DELEGATE_H_

Powered by Google App Engine
This is Rietveld 408576698