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 ANDROID_WEBVIEW_BROWSER_AW_COOKIE_ACCESS_POLICY_H_
6 #define ANDROID_WEBVIEW_BROWSER_AW_COOKIE_ACCESS_POLICY_H_
8 #include "base/basictypes.h"
9 #include "base/lazy_instance.h"
10 #include "base/synchronization/lock.h"
11 #include "net/cookies/canonical_cookie.h"
14 class ResourceContext
;
24 namespace android_webview
{
26 // Manages the cookie access (both setting and getting) policy for WebView.
27 class AwCookieAccessPolicy
{
29 static AwCookieAccessPolicy
* GetInstance();
31 // These manage the global access state shared across requests regardless of
32 // source (i.e. network or JavaScript).
33 bool GetGlobalAllowAccess();
34 void SetGlobalAllowAccess(bool allow
);
36 // These are the functions called when operating over cookies from the
37 // network. See NetworkDelegate for further descriptions.
38 bool OnCanGetCookies(const net::URLRequest
& request
,
39 const net::CookieList
& cookie_list
);
40 bool OnCanSetCookie(const net::URLRequest
& request
,
41 const std::string
& cookie_line
,
42 net::CookieOptions
* options
);
44 // These are the functions called when operating over cookies from the
45 // renderer. See ContentBrowserClient for further descriptions.
46 bool AllowGetCookie(const GURL
& url
,
47 const GURL
& first_party
,
48 const net::CookieList
& cookie_list
,
49 content::ResourceContext
* context
,
50 int render_process_id
,
52 bool AllowSetCookie(const GURL
& url
,
53 const GURL
& first_party
,
54 const std::string
& cookie_line
,
55 content::ResourceContext
* context
,
56 int render_process_id
,
58 net::CookieOptions
* options
);
61 friend struct base::DefaultLazyInstanceTraits
<AwCookieAccessPolicy
>;
63 AwCookieAccessPolicy();
64 ~AwCookieAccessPolicy();
68 DISALLOW_COPY_AND_ASSIGN(AwCookieAccessPolicy
);
71 } // namespace android_webview
73 #endif // ANDROID_WEBVIEW_BROWSER_AW_COOKIE_ACCESS_POLICY_H_