Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(747)

Unified Diff: content/browser/loader/navigation_url_loader_impl.h

Issue 648813002: PlzNavigate: Add first version of NavigationURLLoader. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@plz-navigate-prepare
Patch Set: rebase, OVERRIDE -> override, NULL -> nullptr Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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..266549e962ef24773bc29b5c1761b67a1d29a1a7
--- /dev/null
+++ b/content/browser/loader/navigation_url_loader_impl.h
@@ -0,0 +1,39 @@
+// 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 "base/macros.h"
+#include "base/memory/ref_counted.h"
+#include "content/browser/loader/navigation_url_loader.h"
+
+namespace content {
+
+class NavigationURLLoaderCore;
+
+class NavigationURLLoaderImpl : public NavigationURLLoader {
clamy 2014/10/13 15:22:42 So NavigationURLLoaderImpl has really been reduced
davidben 2014/10/15 22:53:28 It's largely so that it can be uniquely owned rath
+ public:
+ // The caller is responsible for ensuring that |delegate| outlives the loader.
+ NavigationURLLoaderImpl(BrowserContext* browser_context,
+ int64 frame_tree_node_id,
+ const CommonNavigationParams& common_params,
+ scoped_ptr<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_;
+
+ DISALLOW_COPY_AND_ASSIGN(NavigationURLLoaderImpl);
+};
+
+} // namespace content
+
+#endif // CONTENT_BROWSER_LOADER_NAVIGATION_URL_LOADER_IMPL_H_

Powered by Google App Engine
This is Rietveld 408576698