Bug 891986 - Keep the source ArrayBuffer to a decodeAudioData call alive until the...
[gecko.git] / dom / file / FileCommon.h
blob5da6f8e467f76af4ae2394791574df4bbb1d8401
1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim: set ts=2 et sw=2 tw=80: */
3 /* This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this file,
5 * You can obtain one at http://mozilla.org/MPL/2.0/. */
7 #ifndef mozilla_dom_file_filecommon_h__
8 #define mozilla_dom_file_filecommon_h__
10 #include "nsAutoPtr.h"
11 #include "nsCOMPtr.h"
12 #include "nsCycleCollectionParticipant.h"
13 #include "nsDOMEventTargetHelper.h"
14 #include "nsDebug.h"
15 #include "nsStringGlue.h"
16 #include "nsTArray.h"
18 #define BEGIN_FILE_NAMESPACE \
19 namespace mozilla { namespace dom { namespace file {
20 #define END_FILE_NAMESPACE \
21 } /* namespace file */ } /* namespace dom */ } /* namespace mozilla */
22 #define USING_FILE_NAMESPACE \
23 using namespace mozilla::dom::file;
25 #endif // mozilla_dom_file_filecommon_h__