blob: a678ab05fd9771f21c97aec55477900681b1d695 [file] [log] [blame]
// Copyright 2016 The Chromium Authors
// 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_DOM_AGENT_AURA_H_
#define COMPONENTS_UI_DEVTOOLS_VIEWS_DOM_AGENT_AURA_H_
#include <vector>
#include "base/memory/raw_ptr.h"
#include "components/ui_devtools/views/dom_agent_views.h"
#include "ui/aura/env_observer.h"
#include "ui/aura/window_observer.h"
namespace aura {
class Window;
} // namespace aura
namespace ui_devtools {
class DOMAgentAura : public DOMAgentViews,
public aura::EnvObserver,
public aura::WindowObserver {
public:
DOMAgentAura();
DOMAgentAura(const DOMAgentAura&) = delete;
DOMAgentAura& operator=(const DOMAgentAura&) = delete;
~DOMAgentAura() override;
static DOMAgentAura* GetInstance() { return dom_agent_aura_; }
// DOMAgent
std::vector<UIElement*> CreateChildrenForRoot() override;
// aura::EnvObserver:
void OnWindowInitialized(aura::Window* window) override {}
void OnHostInitialized(aura::WindowTreeHost* host) override;
// aura::WindowObserver:
void OnWindowDestroying(aura::Window* window) override;
std::unique_ptr<protocol::DOM::Node> BuildTreeForWindow(
UIElement* window_element_root) override;
private:
static DOMAgentAura* dom_agent_aura_;
std::vector<raw_ptr<aura::Window, VectorExperimental>> roots_;
};
} // namespace ui_devtools
#endif // COMPONENTS_UI_DEVTOOLS_VIEWS_DOM_AGENT_AURA_H_