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

Unified Diff: third_party/WebKit/public/web/WebDatabase.h

Issue 1779413002: Remove Blink's DatabaseIdentifier implementation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove unneeded include Created 4 years, 9 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 | « third_party/WebKit/public/platform/WebSecurityOrigin.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/public/web/WebDatabase.h
diff --git a/third_party/WebKit/public/web/WebDatabase.h b/third_party/WebKit/public/web/WebDatabase.h
index deaf94b819a2ff20c0926b8c74c221c8c1bd5f6f..7c6aacfe59b1e9afadbeb9067397ecb27e6937b0 100644
--- a/third_party/WebKit/public/web/WebDatabase.h
+++ b/third_party/WebKit/public/web/WebDatabase.h
@@ -41,14 +41,14 @@ class WebString;
class WebDatabase {
public:
BLINK_EXPORT static void updateDatabaseSize(
- const WebString& originIdentifier, const WebString& name, long long size);
+ const WebSecurityOrigin&, const WebString& name, long long size);
BLINK_EXPORT static void updateSpaceAvailable(
- const WebString& originIdentifier, long long spaceAvailable);
+ const WebSecurityOrigin&, long long spaceAvailable);
BLINK_EXPORT static void resetSpaceAvailable(
- const WebString& originIdentifier);
+ const WebSecurityOrigin&);
BLINK_EXPORT static void closeDatabaseImmediately(
- const WebString& originIdentifier, const WebString& databaseName);
+ const WebSecurityOrigin&, const WebString& databaseName);
private:
WebDatabase() { }
« no previous file with comments | « third_party/WebKit/public/platform/WebSecurityOrigin.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698