blob: 732de809c26c85682b30400ac18498a7880b54a7 [file] [log] [blame]
scottmg5cbd1cf2016-06-29 02:34:521// Copyright 2016 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef CONTENT_BROWSER_LOADER_DELEGATE_IMPL_H_
6#define CONTENT_BROWSER_LOADER_DELEGATE_IMPL_H_
7
Charles Harrison911fa062018-03-06 21:01:468#include <string>
9
scottmg5cbd1cf2016-06-29 02:34:5210#include "content/browser/loader/loader_delegate.h"
scottmge22a5e52016-06-30 00:36:5111#include "content/common/content_export.h"
scottmg5cbd1cf2016-06-29 02:34:5212
13namespace content {
14
scottmge22a5e52016-06-30 00:36:5115class CONTENT_EXPORT LoaderDelegateImpl : public LoaderDelegate {
scottmg5cbd1cf2016-06-29 02:34:5216 public:
17 ~LoaderDelegateImpl() override;
18
scottmge22a5e52016-06-30 00:36:5119 // LoaderDelegate implementation:
Charles Harrison911fa062018-03-06 21:01:4620 void LoadStateChanged(WebContents* web_contents,
21 const std::string& host,
22 const net::LoadStateWithParam& load_state,
23 uint64_t upload_position,
24 uint64_t upload_size) override;
scottmg5cbd1cf2016-06-29 02:34:5225};
26
27} // namespace content
28
29#endif // CONTENT_BROWSER_LOADER_DELEGATE_IMPL_H_