chromium/components/ui_devtools/views/dom_agent_aura.h

// 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 "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 {};
}  // namespace ui_devtools

#endif  // COMPONENTS_UI_DEVTOOLS_VIEWS_DOM_AGENT_AURA_H_