Chromium Code Reviews| Index: content/browser/loader/navigation_url_loader_impl.h |
| diff --git a/content/browser/loader/navigation_url_loader_impl.h b/content/browser/loader/navigation_url_loader_impl.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..d9552849fb7454439189ff9491b73b6c86db922b |
| --- /dev/null |
| +++ b/content/browser/loader/navigation_url_loader_impl.h |
| @@ -0,0 +1,36 @@ |
| +// Copyright 2014 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_NAVIGATION_URL_LOADER_IMPL_H_ |
| +#define CONTENT_BROWSER_LOADER_NAVIGATION_URL_LOADER_IMPL_H_ |
| + |
| +#include "content/browser/loader/navigation_url_loader.h" |
| + |
| +namespace content { |
| + |
| +class NavigationURLLoaderCore; |
| + |
| +class NavigationURLLoaderImpl : public NavigationURLLoader { |
| + public: |
| + // The caller is responsible for ensuring that |delegate| outlives the loader. |
| + NavigationURLLoaderImpl(BrowserContext* browser_context, |
| + int64 frame_tree_node_id, |
| + const NavigationRequestInfo& request_info, |
| + ResourceRequestBody* request_body, |
| + NavigationURLLoader::Delegate* delegate); |
| + virtual ~NavigationURLLoaderImpl(); |
| + |
| + // Called in response to OnRequestRedirected to continue processing the |
| + // request. |
| + virtual void FollowRedirect() OVERRIDE; |
| + |
| + private: |
| + scoped_refptr<NavigationURLLoaderCore> core_; |
|
mmenke
2014/09/23 17:22:45
Need ref_counted.h
davidben
2014/10/03 16:27:52
Done.
|
| + |
| + DISALLOW_COPY_AND_ASSIGN(NavigationURLLoaderImpl); |
|
mmenke
2014/09/23 17:22:45
Need macros.h
davidben
2014/10/03 16:27:52
Done.
|
| +}; |
| + |
| +} // namespace content |
| + |
| +#endif // CONTENT_BROWSER_LOADER_NAVIGATION_URL_LOADER_IMPL_H_ |