chromium/content/public/test/resource_load_observer.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 CONTENT_PUBLIC_TEST_RESOURCE_LOAD_OBSERVER_H_
#define CONTENT_PUBLIC_TEST_RESOURCE_LOAD_OBSERVER_H_

#include <string>
#include <vector>

#include "base/files/file_util.h"
#include "base/functional/callback_forward.h"
#include "base/time/time.h"
#include "content/public/browser/web_contents_observer.h"
#include "third_party/blink/public/mojom/loader/resource_load_info.mojom.h"
#include "url/gurl.h"

namespace content {
class Shell;
class WebContents;

// Observer class to track resource loads.
class ResourceLoadObserver : public WebContentsObserver {};

}  // namespace content

#endif  // CONTENT_PUBLIC_TEST_RESOURCE_LOAD_OBSERVER_H_