// Copyright 2023 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_RENDERER_RENDER_FRAME_OBSERVER_H_ #define UI_WEBUI_EXAMPLES_RENDERER_RENDER_FRAME_OBSERVER_H_ #include <memory> #include "content/public/renderer/render_frame_observer.h" namespace webui_examples { class RenderFrameObserver : public content::RenderFrameObserver { … }; } // namespace webui_examples #endif // UI_WEBUI_EXAMPLES_RENDERER_RENDER_FRAME_OBSERVER_H_