CookieJarAndroid.cpp revision 730ef1944495761bb07f38e435da91f1ad059972
18e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project/*
28e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * Copyright 2007, The Android Open Source Project
38e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project *
48e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * Redistribution and use in source and binary forms, with or without
58e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * modification, are permitted provided that the following conditions
68e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * are met:
78e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project *  * Redistributions of source code must retain the above copyright
88e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project *    notice, this list of conditions and the following disclaimer.
98e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project *  * Redistributions in binary form must reproduce the above copyright
108e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project *    notice, this list of conditions and the following disclaimer in the
118e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project *    documentation and/or other materials provided with the distribution.
128e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project *
138e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ``AS IS'' AND ANY
148e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
158e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16e03118fd5d9b776df29de3f96232ed6b5395c845Steve Block * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT OWNER OR
178e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
188e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
198e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
208e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
218e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
228e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
238e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
248e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project */
25e03118fd5d9b776df29de3f96232ed6b5395c845Steve Block
268e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project#include "config.h"
27730ef1944495761bb07f38e435da91f1ad059972Andrei Popescu
288e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project#include "CookieClient.h"
29730ef1944495761bb07f38e435da91f1ad059972Andrei Popescu#include "JavaSharedClient.h"
308e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project
318e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Projectusing namespace android;
328e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project
338e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Projectnamespace WebCore {
348e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project
35730ef1944495761bb07f38e435da91f1ad059972Andrei Popescuclass Document;
36730ef1944495761bb07f38e435da91f1ad059972Andrei Popescu
37730ef1944495761bb07f38e435da91f1ad059972Andrei Popescuvoid setCookies(Document*, const KURL& url, const String& value)
38730ef1944495761bb07f38e435da91f1ad059972Andrei Popescu{
39730ef1944495761bb07f38e435da91f1ad059972Andrei Popescu    if (JavaSharedClient::GetCookieClient())
40730ef1944495761bb07f38e435da91f1ad059972Andrei Popescu        JavaSharedClient::GetCookieClient()->setCookies(url, value);
41730ef1944495761bb07f38e435da91f1ad059972Andrei Popescu}
42730ef1944495761bb07f38e435da91f1ad059972Andrei Popescu
43730ef1944495761bb07f38e435da91f1ad059972Andrei PopescuString cookies(const Document* , const KURL& url)
44730ef1944495761bb07f38e435da91f1ad059972Andrei Popescu{
45730ef1944495761bb07f38e435da91f1ad059972Andrei Popescu    if (JavaSharedClient::GetCookieClient())
46730ef1944495761bb07f38e435da91f1ad059972Andrei Popescu        return JavaSharedClient::GetCookieClient()->cookies(url);
47730ef1944495761bb07f38e435da91f1ad059972Andrei Popescu    return String();
48730ef1944495761bb07f38e435da91f1ad059972Andrei Popescu}
49730ef1944495761bb07f38e435da91f1ad059972Andrei Popescu
50730ef1944495761bb07f38e435da91f1ad059972Andrei Popescubool cookiesEnabled(const Document* )
51730ef1944495761bb07f38e435da91f1ad059972Andrei Popescu{
52730ef1944495761bb07f38e435da91f1ad059972Andrei Popescu    if (JavaSharedClient::GetCookieClient())
53730ef1944495761bb07f38e435da91f1ad059972Andrei Popescu        return JavaSharedClient::GetCookieClient()->cookiesEnabled();
54730ef1944495761bb07f38e435da91f1ad059972Andrei Popescu    return false;
55730ef1944495761bb07f38e435da91f1ad059972Andrei Popescu}
568e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project
578e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project}
58