Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1772)

Unified Diff: webkit/database/database_util.cc

Issue 660113: Reset the default quota limit for extensions to 5MB, but add a... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webkit/database/database_util.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/database/database_util.cc
===================================================================
--- webkit/database/database_util.cc (revision 40091)
+++ webkit/database/database_util.cc (working copy)
@@ -5,6 +5,8 @@
#include "webkit/database/database_util.h"
#include "base/string_util.h"
+#include "third_party/WebKit/WebKit/chromium/public/WebSecurityOrigin.h"
+#include "third_party/WebKit/WebKit/chromium/public/WebString.h"
#include "webkit/database/database_tracker.h"
#include "webkit/database/vfs_backend.h"
@@ -64,4 +66,9 @@
return full_path;
}
+string16 DatabaseUtil::GetOriginIdentifier(const GURL& url) {
+ string16 spec = UTF8ToUTF16(url.spec());
+ return WebKit::WebSecurityOrigin::createFromString(spec).databaseIdentifier();
+}
+
} // namespace webkit_database
« no previous file with comments | « webkit/database/database_util.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698