1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CONTENT_BROWSER_CROSS_SITE_REQUEST_MANAGER_H_
6 #define CONTENT_BROWSER_CROSS_SITE_REQUEST_MANAGER_H_
11 #include "base/basictypes.h"
12 #include "base/synchronization/lock.h"
14 template <typename T
> struct DefaultSingletonTraits
;
18 // CrossSiteRequestManager is used to handle bookkeeping for cross-site
19 // requests and responses between the UI and IO threads. Such requests involve
20 // a transition from one RenderViewHost to another within WebContentsImpl, and
21 // involve coordination with ResourceDispatcherHost.
23 // CrossSiteRequestManager is a singleton that may be used on any thread.
25 class CrossSiteRequestManager
{
27 // Returns the singleton instance.
28 static CrossSiteRequestManager
* GetInstance();
30 // Returns whether the RenderViewHost specified by the given IDs currently
31 // has a pending cross-site request. If so, we will have to delay the
32 // response until the previous RenderViewHost runs its onunload handler.
33 // Called by ResourceDispatcherHost on the IO thread and RenderViewHost on
35 bool HasPendingCrossSiteRequest(int renderer_id
, int render_view_id
);
37 // Sets whether the RenderViewHost specified by the given IDs currently has a
38 // pending cross-site request. Called by RenderViewHost on the UI thread.
39 void SetHasPendingCrossSiteRequest(int renderer_id
,
44 friend struct DefaultSingletonTraits
<CrossSiteRequestManager
>;
45 typedef std::set
<std::pair
<int, int> > RenderViewSet
;
47 CrossSiteRequestManager();
48 ~CrossSiteRequestManager();
50 // You must acquire this lock before reading or writing any members of this
51 // class. You must not block while holding this lock.
54 // Set of (render_process_host_id, render_view_id) pairs of all
55 // RenderViewHosts that have pending cross-site requests. Used to pass
56 // information about the RenderViewHosts between the UI and IO threads.
57 RenderViewSet pending_cross_site_views_
;
59 DISALLOW_COPY_AND_ASSIGN(CrossSiteRequestManager
);
62 } // namespace content
64 #endif // CONTENT_BROWSER_CROSS_SITE_REQUEST_MANAGER_H_