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

Unified Diff: content/public/browser/navigation_throttle.h

Issue 1357803004: Reland of Add a NavigationThrottle to the public content/ interface (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@navigation-api
Patch Set: Created 5 years, 3 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
« no previous file with comments | « content/public/browser/navigation_handle.cc ('k') | content/public/browser/navigation_throttle.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/browser/navigation_throttle.h
diff --git a/content/public/browser/navigation_throttle.h b/content/public/browser/navigation_throttle.h
new file mode 100644
index 0000000000000000000000000000000000000000..ae5883b5e85828827cd63eba9fe5c87c2a72c167
--- /dev/null
+++ b/content/public/browser/navigation_throttle.h
@@ -0,0 +1,43 @@
+// Copyright 2015 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_PUBLIC_BROWSER_NAVIGATION_THROTTLE_H_
+#define CONTENT_PUBLIC_BROWSER_NAVIGATION_THROTTLE_H_
+
+#include "content/common/content_export.h"
+
+namespace content {
+class NavigationHandle;
+
+// A NavigationThrottle tracks and allows interaction with a navigation on the
+// UI thread.
+class CONTENT_EXPORT NavigationThrottle {
+ public:
+ // This is returned to the NavigationHandle to allow the navigation to
+ // proceed, or to cancel it.
+ enum ThrottleCheckResult {
+ PROCEED,
+ CANCEL_AND_IGNORE,
+ };
+
+ NavigationThrottle(NavigationHandle* navigation_handle);
+ virtual ~NavigationThrottle();
+
+ // Called when a network request is about to be made for this navigation.
+ virtual ThrottleCheckResult WillStartRequest();
+
+ // Called when a server redirect is received by the navigation.
+ virtual ThrottleCheckResult WillRedirectRequest();
+
+ // The NavigationHandle that is tracking the information related to this
+ // navigation.
+ NavigationHandle* navigation_handle() const { return navigation_handle_; }
+
+ private:
+ NavigationHandle* navigation_handle_;
+};
+
+} // namespace content
+
+#endif // CONTENT_PUBLIC_BROWSER_NAVIGATION_THROTTLE_H_
« no previous file with comments | « content/public/browser/navigation_handle.cc ('k') | content/public/browser/navigation_throttle.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698