chromium/chrome/browser/ui/webui/webui_load_timer.h

// Copyright 2019 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef CHROME_BROWSER_UI_WEBUI_WEBUI_LOAD_TIMER_H_
#define CHROME_BROWSER_UI_WEBUI_WEBUI_LOAD_TIMER_H_

#include <memory>
#include <string>

#include "content/public/browser/web_contents_observer.h"

namespace base {
class ElapsedTimer;
}

// Measures and reports page load times for WebUI.
class WebuiLoadTimer : public content::WebContentsObserver {};

#endif  // CHROME_BROWSER_UI_WEBUI_WEBUI_LOAD_TIMER_H_