2010-06-23 12:46:08 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=2 et sw=2 tw=80: */
|
2012-05-21 04:12:37 -07:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2010-06-23 12:46:08 -07:00
|
|
|
|
2011-01-06 22:21:36 -08:00
|
|
|
#include "nsIDOMEvent.idl"
|
2010-06-23 12:46:08 -07:00
|
|
|
|
2011-11-04 10:17:19 -07:00
|
|
|
[scriptable, builtinclass, uuid(52e21085-d6cd-4886-a5eb-19b47d13abf6)]
|
2011-01-06 22:21:36 -08:00
|
|
|
interface nsIIDBVersionChangeEvent : nsIDOMEvent
|
2010-06-23 12:46:08 -07:00
|
|
|
{
|
2011-10-20 09:10:56 -07:00
|
|
|
readonly attribute unsigned long long oldVersion;
|
2012-05-25 11:48:27 -07:00
|
|
|
readonly attribute jsval newVersion;
|
2010-06-23 12:46:08 -07:00
|
|
|
};
|