blob: 1f49c60f61d762b3da6c9659ca87f8523d01c97b [file] [log] [blame]
// 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 COMPONENTS_UI_DEVTOOLS_VIEWS_UI_ELEMENT_DELEGATE_H_
#define COMPONENTS_UI_DEVTOOLS_VIEWS_UI_ELEMENT_DELEGATE_H_
#include <vector>
#include "base/macros.h"
#include "ui/aura/window.h"
namespace ui_devtools {
class UIElement;
class 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 ui_devtools
#endif // COMPONENTS_UI_DEVTOOLS_VIEWS_UI_ELEMENT_DELEGATE_H_