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
|
|
|
|
2012-12-22 00:18:08 -08:00
|
|
|
[scriptable, builtinclass, uuid(08a6b8b1-92fa-4f80-98cc-370143b11ff3)]
|
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-06-01 10:21:12 -07:00
|
|
|
|
|
|
|
[implicit_jscontext]
|
2012-05-25 11:48:27 -07:00
|
|
|
readonly attribute jsval newVersion;
|
2010-06-23 12:46:08 -07:00
|
|
|
};
|