| Index: content/browser/loader_delegate_impl.h
|
| diff --git a/content/browser/loader_delegate_impl.h b/content/browser/loader_delegate_impl.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..e55ff63196fa32071e74924e999825513bc0e7d9
|
| --- /dev/null
|
| +++ b/content/browser/loader_delegate_impl.h
|
| @@ -0,0 +1,34 @@
|
| +// Copyright 2016 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#ifndef CONTENT_BROWSER_LOADER_DELEGATE_IMPL_H_
|
| +#define CONTENT_BROWSER_LOADER_DELEGATE_IMPL_H_
|
| +
|
| +#include "content/browser/loader/loader_delegate.h"
|
| +
|
| +namespace content {
|
| +
|
| +class LoaderDelegateImpl : public LoaderDelegate {
|
| + public:
|
| + ~LoaderDelegateImpl() override;
|
| +
|
| + void LoadStateChanged(int child_id,
|
| + int route_id,
|
| + const GURL& url,
|
| + const net::LoadStateWithParam& load_state,
|
| + uint64_t upload_position,
|
| + uint64_t upload_size) override;
|
| +
|
| + private:
|
| + void NotifyLoadStateChangedOnUI(int child_id,
|
| + int route_id,
|
| + const GURL& url,
|
| + const net::LoadStateWithParam& load_state,
|
| + uint64_t upload_position,
|
| + uint64_t upload_size);
|
| +};
|
| +
|
| +} // namespace content
|
| +
|
| +#endif // CONTENT_BROWSER_LOADER_DELEGATE_IMPL_H_
|
|
|