diff options
author | wolfbeast <mcwerewolf@gmail.com> | 2018-05-12 11:09:44 +0200 |
---|---|---|
committer | wolfbeast <mcwerewolf@gmail.com> | 2018-05-12 11:09:44 +0200 |
commit | cfe5ef4ac7cd59f094b538252161ad74223c47da (patch) | |
tree | e5c0ee7e70db84bd2bfc6062784006769e9df730 /dom/system/gonk/MozMtpCommon.h | |
parent | 28cf922aa9af4d4b8e0a3ce91dc1270a55986909 (diff) | |
download | UXP-cfe5ef4ac7cd59f094b538252161ad74223c47da.tar UXP-cfe5ef4ac7cd59f094b538252161ad74223c47da.tar.gz UXP-cfe5ef4ac7cd59f094b538252161ad74223c47da.tar.lz UXP-cfe5ef4ac7cd59f094b538252161ad74223c47da.tar.xz UXP-cfe5ef4ac7cd59f094b538252161ad74223c47da.zip |
Remove Gonk build directories
Diffstat (limited to 'dom/system/gonk/MozMtpCommon.h')
-rw-r--r-- | dom/system/gonk/MozMtpCommon.h | 56 |
1 files changed, 0 insertions, 56 deletions
diff --git a/dom/system/gonk/MozMtpCommon.h b/dom/system/gonk/MozMtpCommon.h deleted file mode 100644 index 81c0a3a74..000000000 --- a/dom/system/gonk/MozMtpCommon.h +++ /dev/null @@ -1,56 +0,0 @@ -/* -*- Mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; tab-width: 40 -*- */ -/* vim: set ts=2 et sw=2 tw=80: */ -/* 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/. */ - -#ifndef mozilla_system_mozmtpcommon_h__ -#define mozilla_system_mozmtpcommon_h__ - -#include "mozilla/Types.h" -#include <android/log.h> - -#define USE_DEBUG 0 - -#if USE_DEBUG -#define MTP_DBG(msg, ...) \ - __android_log_print(ANDROID_LOG_DEBUG, "MozMtp", \ - "%s: " msg, __FUNCTION__, ##__VA_ARGS__) -#else -#define MTP_DBG(msg, ...) -#endif - -#define MTP_LOG(msg, ...) \ - __android_log_print(ANDROID_LOG_INFO, "MozMtp", \ - "%s: " msg, __FUNCTION__, ##__VA_ARGS__) - -#define MTP_ERR(msg, ...) \ - __android_log_print(ANDROID_LOG_ERROR, "MozMtp", \ - "%s: " msg, __FUNCTION__, ##__VA_ARGS__) - -#define BEGIN_MTP_NAMESPACE \ - namespace mozilla { namespace system { namespace mtp { -#define END_MTP_NAMESPACE \ - } /* namespace mtp */ } /* namespace system */ } /* namespace mozilla */ -#define USING_MTP_NAMESPACE \ - using namespace mozilla::system::mtp; - -namespace android { - class MOZ_EXPORT MtpServer; - class MOZ_EXPORT MtpStorage; - class MOZ_EXPORT MtpStringBuffer; - class MOZ_EXPORT MtpDatabase; - class MOZ_EXPORT MtpDataPacket; - class MOZ_EXPORT MtpProperty; -} - -#include <mtp.h> -#include <MtpDatabase.h> -#include <MtpObjectInfo.h> -#include <MtpProperty.h> -#include <MtpServer.h> -#include <MtpStorage.h> -#include <MtpStringBuffer.h> -#include <MtpTypes.h> - -#endif // mozilla_system_mtpcommon_h__ |