dom/file/FileCommon.h

branch
TOR_BUG_9701
changeset 10
ac0c01689b40
equal deleted inserted replaced
-1:000000000000 0:4e623ab94c0a
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/. */
6
7 #ifndef mozilla_dom_file_filecommon_h__
8 #define mozilla_dom_file_filecommon_h__
9
10 #include "mozilla/DOMEventTargetHelper.h"
11 #include "nsAutoPtr.h"
12 #include "nsCOMPtr.h"
13 #include "nsCycleCollectionParticipant.h"
14 #include "nsDebug.h"
15 #include "nsString.h"
16 #include "nsTArray.h"
17
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;
24
25 #endif // mozilla_dom_file_filecommon_h__

mercurial