// Copyright 2022 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef UI_WEBUI_EXAMPLES_BROWSER_UI_AURA_CONTENT_WINDOW_H_ #define UI_WEBUI_EXAMPLES_BROWSER_UI_AURA_CONTENT_WINDOW_H_ #include "base/functional/callback.h" #include "ui/webui/examples/browser/ui/aura/aura_context.h" #include "url/gurl.h" namespace content { class WebContents; } // namespace content namespace wm { class CompoundEventFilter; } // namespace wm namespace webui_examples { // Represents a single window that hosts one WebContents stretched to the // window's size. class ContentWindow { … }; } // namespace webui_examples #endif // UI_WEBUI_EXAMPLES_BROWSER_UI_AURA_CONTENT_WINDOW_H_