diff options
author | andreip@chromium.org <andreip@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-07-30 11:09:47 +0000 |
---|---|---|
committer | andreip@chromium.org <andreip@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-07-30 11:09:47 +0000 |
commit | 7ef8f601e23f8a471f0614479731a774f618e533 (patch) | |
tree | eb666c864819ae61947557704dcede517abaa66a /chrome/common/render_messages.h | |
parent | a463020ae3382fd5396934b3072f13c9dcefd2f1 (diff) | |
download | chromium_src-7ef8f601e23f8a471f0614479731a774f618e533.zip chromium_src-7ef8f601e23f8a471f0614479731a774f618e533.tar.gz chromium_src-7ef8f601e23f8a471f0614479731a774f618e533.tar.bz2 |
Rename IndexedDatabase to IDBFactory to match the spec
Review URL: http://codereview.chromium.org/2808083
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54304 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/render_messages.h')
-rw-r--r-- | chrome/common/render_messages.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/chrome/common/render_messages.h b/chrome/common/render_messages.h index 1eab2cb..acdd77e 100644 --- a/chrome/common/render_messages.h +++ b/chrome/common/render_messages.h @@ -598,7 +598,7 @@ struct ViewMsg_DOMStorageEvent_Params { }; // Used to open an indexed database. -struct ViewHostMsg_IndexedDatabaseOpen_Params { +struct ViewHostMsg_IDBFactoryOpen_Params { // The routing ID of the view initiating the open. int32 routing_id_; @@ -2722,10 +2722,10 @@ struct ParamTraits<ViewMsg_DOMStorageEvent_Params> { } }; -// Traits for ViewHostMsg_IndexedDatabaseOpen_Params. +// Traits for ViewHostMsg_IDBFactoryOpen_Params. template <> -struct ParamTraits<ViewHostMsg_IndexedDatabaseOpen_Params> { - typedef ViewHostMsg_IndexedDatabaseOpen_Params param_type; +struct ParamTraits<ViewHostMsg_IDBFactoryOpen_Params> { + typedef ViewHostMsg_IDBFactoryOpen_Params param_type; static void Write(Message* m, const param_type& p) { WriteParam(m, p.routing_id_); WriteParam(m, p.response_id_); |