Bug 909003 - Part f: Remove some includes from IDBFactory.h; r=bz

This commit is contained in:
Ms2ger 2013-09-06 08:43:23 +02:00
Родитель 03028689d0
Коммит 963ae85194
2 изменённых файлов: 11 добавлений и 11 удалений

Просмотреть файл

@ -4,8 +4,6 @@
* 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/. */
#include "base/basictypes.h"
#include "IDBFactory.h"
#include "nsIFile.h"

Просмотреть файл

@ -7,26 +7,26 @@
#ifndef mozilla_dom_indexeddb_idbfactory_h__
#define mozilla_dom_indexeddb_idbfactory_h__
#include "mozilla/dom/indexedDB/IndexedDatabase.h"
#include "mozIStorageConnection.h"
#include "mozilla/dom/BindingUtils.h"
#include "mozilla/dom/BindingDeclarations.h" // for Optional
#include "nsCOMPtr.h"
#include "nsCycleCollectionParticipant.h"
#include "nsWrapperCache.h"
class mozIStorageConnection;
class nsIAtom;
class nsIFile;
class nsIFileURL;
class nsIPrincipal;
class nsPIDOMWindow;
template<typename> class nsRefPtr;
namespace mozilla {
class ErrorResult;
namespace dom {
class ContentParent;
}
}
BEGIN_INDEXEDDB_NAMESPACE
namespace indexedDB {
struct DatabaseInfo;
class IDBDatabase;
@ -187,6 +187,8 @@ private:
bool mRootedOwningObject;
};
END_INDEXEDDB_NAMESPACE
} // namespace indexedDB
} // namespace dom
} // namespace mozilla
#endif // mozilla_dom_indexeddb_idbfactory_h__