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

Unified Diff: content/test/test_navigation_url_loader.h

Issue 730553002: PlzNavigate: Refactor unit test helper functions (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed the test utils class Created 6 years, 1 month 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
« no previous file with comments | « content/test/browser_side_navigation_test_utils.cc ('k') | content/test/test_navigation_url_loader.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/test/test_navigation_url_loader.h
diff --git a/content/test/test_navigation_url_loader.h b/content/test/test_navigation_url_loader.h
new file mode 100644
index 0000000000000000000000000000000000000000..f65b41a8cd95029c0964aafc319876267703ada5
--- /dev/null
+++ b/content/test/test_navigation_url_loader.h
@@ -0,0 +1,59 @@
+// Copyright (c) 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_TEST_TEST_NAVIGATION_URL_LOADER_H_
+#define CONTENT_TEST_TEST_NAVIGATION_URL_LOADER_H_
+
+#include "base/memory/scoped_ptr.h"
+#include "base/memory/weak_ptr.h"
+#include "content/browser/frame_host/navigation_request_info.h"
+#include "content/browser/loader/navigation_url_loader.h"
+#include "content/common/navigation_params.h"
+
+namespace net {
+struct RedirectInfo;
+}
+
+namespace content {
+
+class NavigationURLLoaderDelegate;
+class StreamHandle;
+struct ResourceResponse;
+
+// PlzNavigate
+// Test implementation of NavigationURLLoader to simulate the network stack
+// response.
+class TestNavigationURLLoader
+ : public NavigationURLLoader,
+ public base::SupportsWeakPtr<TestNavigationURLLoader> {
+ public:
+ TestNavigationURLLoader(const CommonNavigationParams& common_params,
+ scoped_ptr<NavigationRequestInfo> request_info,
+ NavigationURLLoaderDelegate* delegate);
+
+ // NavigationURLLoader implementation.
+ void FollowRedirect() override;
+
+ const CommonNavigationParams& common_params() const { return common_params_; }
+ NavigationRequestInfo* request_info() const { return request_info_.get(); }
+
+ void CallOnRequestRedirected(const net::RedirectInfo& redirect_info,
+ const scoped_refptr<ResourceResponse>& response);
+ void CallOnResponseStarted(const scoped_refptr<ResourceResponse>& response,
+ scoped_ptr<StreamHandle> body);
+
+ int redirect_count() { return redirect_count_; }
+
+ private:
+ ~TestNavigationURLLoader();
+
+ CommonNavigationParams common_params_;
+ scoped_ptr<NavigationRequestInfo> request_info_;
+ NavigationURLLoaderDelegate* delegate_;
+ int redirect_count_;
+};
+
+} // namespace content
+
+#endif // CONTENT_TEST_TEST_NAVIGATION_URL_LOADER_H_
« no previous file with comments | « content/test/browser_side_navigation_test_utils.cc ('k') | content/test/test_navigation_url_loader.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698