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

Unified Diff: WebCore/storage/IDBKey.h

Issue 5800002: Merge 73697 - 2010-12-10 Hans Wennborg <hans@chromium.org>... (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/597/
Patch Set: Created 10 years 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 | « WebCore/storage/IDBFactoryBackendImpl.cpp ('k') | WebCore/storage/IDBKey.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: WebCore/storage/IDBKey.h
===================================================================
--- WebCore/storage/IDBKey.h (revision 73901)
+++ WebCore/storage/IDBKey.h (working copy)
@@ -43,7 +43,7 @@
{
return adoptRef(new IDBKey());
}
- static PassRefPtr<IDBKey> create(int32_t number)
+ static PassRefPtr<IDBKey> create(double number)
{
return adoptRef(new IDBKey(number));
}
@@ -68,7 +68,7 @@
return m_string;
}
- int32_t number() const
+ double number() const
{
ASSERT(m_type == NumberType);
return m_number;
@@ -88,12 +88,12 @@
private:
IDBKey();
- explicit IDBKey(int32_t);
+ explicit IDBKey(double);
explicit IDBKey(const String&);
Type m_type;
String m_string;
- int32_t m_number;
+ double m_number;
};
}
« no previous file with comments | « WebCore/storage/IDBFactoryBackendImpl.cpp ('k') | WebCore/storage/IDBKey.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698