| 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_
|
|
|