X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2Fthird_party%2FWebKit%2Fpublic%2Fweb%2FWebDatabase.h;h=aadc47e6ae5aeaeef2684c1fd9531b23d50fce14;hb=3545e9f2671f595d2a2f3ee75ca0393b01e35ef6;hp=14741a701e58cf77c0470d0cf36eb31a43441427;hpb=7d210d4c7e9ba36e635eabc5b5780495f8a63292;p=platform%2Fframework%2Fweb%2Fcrosswalk.git diff --git a/src/third_party/WebKit/public/web/WebDatabase.h b/src/third_party/WebKit/public/web/WebDatabase.h index 14741a7..aadc47e 100644 --- a/src/third_party/WebKit/public/web/WebDatabase.h +++ b/src/third_party/WebKit/public/web/WebDatabase.h @@ -36,17 +36,10 @@ namespace blink { -class DatabaseBackendBase; class WebString; class WebDatabase { public: - BLINK_EXPORT WebString name() const; - BLINK_EXPORT WebString displayName() const; - BLINK_EXPORT unsigned long estimatedSize() const; - BLINK_EXPORT WebSecurityOrigin securityOrigin() const; - BLINK_EXPORT bool isSyncDatabase() const; - BLINK_EXPORT static void updateDatabaseSize( const WebString& originIdentifier, const WebString& name, long long size); BLINK_EXPORT static void updateSpaceAvailable( @@ -57,13 +50,8 @@ public: BLINK_EXPORT static void closeDatabaseImmediately( const WebString& originIdentifier, const WebString& databaseName); -#if BLINK_IMPLEMENTATION - WebDatabase(const DatabaseBackendBase*); -#endif - private: WebDatabase() { } - const DatabaseBackendBase* m_database; }; } // namespace blink