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

Unified Diff: Source/modules/webdatabase/DOMWindowWebDatabase.h

Issue 683013002: Extract a DOMWindow interface from LocalDOMWindow and use it in the idl. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix incorrect assumption Created 6 years, 1 month 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
Index: Source/modules/webdatabase/DOMWindowWebDatabase.h
diff --git a/Source/modules/webdatabase/DOMWindowWebDatabase.h b/Source/modules/webdatabase/DOMWindowWebDatabase.h
index 02b5db1c009dc2ccd9891d4a91d312da631e653e..5fb0aa70351ce4e3ce25059db91c17789d963e20 100644
--- a/Source/modules/webdatabase/DOMWindowWebDatabase.h
+++ b/Source/modules/webdatabase/DOMWindowWebDatabase.h
@@ -32,14 +32,14 @@
namespace blink {
-class LocalDOMWindow;
+class DOMWindow;
class Database;
class DatabaseCallback;
class ExceptionState;
class DOMWindowWebDatabase {
public:
- static Database* openDatabase(LocalDOMWindow&, const String& name, const String& version, const String& displayName, unsigned long estimatedSize, DatabaseCallback* creationCallback, ExceptionState&);
+ static Database* openDatabase(DOMWindow&, const String& name, const String& version, const String& displayName, unsigned long estimatedSize, DatabaseCallback* creationCallback, ExceptionState&);
private:
DOMWindowWebDatabase() { };

Powered by Google App Engine
This is Rietveld 408576698