diff options
author | dumi@chromium.org <dumi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-23 22:16:47 +0000 |
---|---|---|
committer | dumi@chromium.org <dumi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-23 22:16:47 +0000 |
commit | aa277ab994600d96e184ff472cc3ff8f984fd5ac (patch) | |
tree | 68c29e012b8bf7fa3dac22e0de27c76bcfbb3e7b /webkit/api/public/WebSecurityOrigin.h | |
parent | a2bf225aa0e386cf57eeb7411c17ca9582ca7b36 (diff) | |
download | chromium_src-aa277ab994600d96e184ff472cc3ff8f984fd5ac.zip chromium_src-aa277ab994600d96e184ff472cc3ff8f984fd5ac.tar.gz chromium_src-aa277ab994600d96e184ff472cc3ff8f984fd5ac.tar.bz2 |
Adding the WebDatabase class, and the WebDatabaseObserver abstract
class. Also, adding the databaseIdentifier() method to
WebSecurityOrigin.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/295033
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@29959 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/api/public/WebSecurityOrigin.h')
-rw-r--r-- | webkit/api/public/WebSecurityOrigin.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/webkit/api/public/WebSecurityOrigin.h b/webkit/api/public/WebSecurityOrigin.h index 1905643..cbb1a3d 100644 --- a/webkit/api/public/WebSecurityOrigin.h +++ b/webkit/api/public/WebSecurityOrigin.h @@ -55,6 +55,10 @@ namespace WebKit { bool isNull() const { return m_private == 0; } + // Returns a string representation of this SecurityOrigin that can be used as a file. + // Should be used in storage APIs only. + WEBKIT_API WebString databaseIdentifier(); + WEBKIT_API WebString toString() const; #if WEBKIT_IMPLEMENTATION |