Cancel composition when focused node was changed
[framework/web/webkit-efl.git] / Source / WebKit2 / WebProcess / WebCoreSupport / WebDatabaseManager.h
1 /*
2  * Copyright (C) 2010 Apple Inc. All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions
6  * are met:
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.
12  *
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.
24  */
25
26 #ifndef WebDatabaseManager_h
27 #define WebDatabaseManager_h
28
29 #if ENABLE(SQL_DATABASE)
30
31 #include "Arguments.h"
32 #include <WebCore/DatabaseTrackerClient.h>
33 #include <wtf/Noncopyable.h>
34 #include <wtf/text/WTFString.h>
35
36 namespace CoreIPC {
37 class ArgumentDecoder;
38 class Connection;
39 class MessageID;
40 }
41
42 namespace WebKit {
43
44 class WebDatabaseManager : public WebCore::DatabaseTrackerClient {
45     WTF_MAKE_NONCOPYABLE(WebDatabaseManager);
46 public:
47     static WebDatabaseManager& shared();
48 #if ENABLE(TIZEN_SQL_DATABASE)
49     static bool initialize(const String& databaseDirectory);
50 #else
51     static void initialize(const String& databaseDirectory);
52 #endif
53
54     void didReceiveMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*);
55     void setQuotaForOrigin(const String& originIdentifier, unsigned long long quota) const;
56
57 public:
58     void deleteAllDatabases() const;
59
60 private:
61     WebDatabaseManager();
62     virtual ~WebDatabaseManager();
63
64     // Implemented in generated WebDatabaseManagerMessageReceiver.cpp
65     void didReceiveWebDatabaseManagerMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*);
66
67     void getDatabasesByOrigin(uint64_t callbackID) const;
68     void getDatabaseOrigins(uint64_t callbackID) const;
69 #if ENABLE(TIZEN_SQL_DATABASE)
70     void getDatabasePath(uint64_t callbackID) const;
71     void getQuotaForOrigin(uint64_t callbackID, const String& databaseIdentifier) const;
72     void getUsageForOrigin(uint64_t callbackID, const String& originIdentifier) const;
73 #endif
74     void deleteDatabaseWithNameForOrigin(const String& databaseIdentifier, const String& originIdentifier) const;
75     void deleteDatabasesForOrigin(const String& originIdentifier) const;
76
77     // WebCore::DatabaseTrackerClient
78     virtual void dispatchDidModifyOrigin(WebCore::SecurityOrigin*) OVERRIDE;
79     virtual void dispatchDidModifyDatabase(WebCore::SecurityOrigin*, const String& databaseIdentifier) OVERRIDE;
80 };
81
82 } // namespace WebKit
83
84 #endif // ENABLE(SQL_DATABASE)
85
86 #endif // WebDatabaseManager_h