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

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

Issue 1459473003: Add a WebContents getter callback in ResourceRequestInfo (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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
Index: content/public/browser/resource_request_info.h
diff --git a/content/public/browser/resource_request_info.h b/content/public/browser/resource_request_info.h
index b6edad7236c8eb2b76693c22c1bb0ef4fbb8c5ef..91f601a29375901368ca25e59d3279b5cb3c2ffb 100644
--- a/content/public/browser/resource_request_info.h
+++ b/content/public/browser/resource_request_info.h
@@ -6,7 +6,9 @@
#define CONTENT_PUBLIC_BROWSER_RESOURCE_REQUEST_INFO_H_
#include "base/basictypes.h"
+#include "base/callback.h"
davidben 2015/11/19 17:46:13 callback_forward.h
clamy 2015/11/20 13:50:43 Done.
#include "content/common/content_export.h"
+#include "content/public/browser/web_contents.h"
#include "content/public/common/resource_type.h"
#include "third_party/WebKit/public/platform/WebPageVisibilityState.h"
#include "third_party/WebKit/public/platform/WebReferrerPolicy.h"
@@ -51,6 +53,12 @@ class ResourceRequestInfo {
int* render_process_id,
int* render_frame_id);
+ // Returns a callback that returns a pointer to the WebContents this request
+ // is asscoaited with, or nullptr if it does not exit. The callback should
davidben 2015/11/19 17:46:13 asscoaited -> associated exit -> exist Probably a
clamy 2015/11/20 13:50:43 Done.
+ // only run on the UI thread.
+ using WebContentsGetterOnUI = base::Callback<WebContents*(void)>;
davidben 2015/11/19 17:46:13 base::Callback<WebContents*(void)> isn't much long
clamy 2015/11/20 13:50:43 Done.
+ virtual WebContentsGetterOnUI GetWebContentsForRequest() = 0;
+
// Returns the associated ResourceContext.
virtual ResourceContext* GetContext() const = 0;
« content/browser/ssl/ssl_policy.cc ('K') | « content/public/browser/content_browser_client.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698