2 * Copyright (C) 2011 Apple Inc. All rights reserved.
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution.
13 * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
14 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
15 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
17 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
18 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
19 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
20 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
21 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
22 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
23 * THE POSSIBILITY OF SUCH DAMAGE.
26 #ifndef WebResourceCacheManagerProxy_h
27 #define WebResourceCacheManagerProxy_h
29 #include "APIObject.h"
30 #include "Arguments.h"
31 #include "GenericCallback.h"
32 #include "ResourceCachesToClear.h"
33 #include <wtf/HashMap.h>
34 #include <wtf/PassRefPtr.h>
37 class ArgumentDecoder;
44 struct SecurityOriginData;
46 class WebProcessProxy;
47 class WebSecurityOrigin;
49 typedef GenericCallback<WKArrayRef> ArrayCallback;
51 class WebResourceCacheManagerProxy : public APIObject {
53 static const Type APIType = TypeCacheManager;
55 static PassRefPtr<WebResourceCacheManagerProxy> create(WebContext*);
56 virtual ~WebResourceCacheManagerProxy();
59 void clearContext() { m_webContext = 0; }
61 void getCacheOrigins(PassRefPtr<ArrayCallback>);
62 void clearCacheForOrigin(WebSecurityOrigin*, ResourceCachesToClear);
63 void clearCacheForAllOrigins(ResourceCachesToClear);
65 #if ENABLE(TIZEN_CACHE_DUMP_SYNC)
69 void didReceiveWebResourceCacheManagerProxyMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*);
71 bool shouldTerminate(WebProcessProxy*) const;
74 explicit WebResourceCacheManagerProxy(WebContext*);
76 virtual Type type() const { return APIType; }
79 void didGetCacheOrigins(const Vector<SecurityOriginData>& originIdentifiers, uint64_t callbackID);
81 WebContext* m_webContext;
82 HashMap<uint64_t, RefPtr<ArrayCallback> > m_arrayCallbacks;
87 #endif // DatabaseManagerProxy_h