summaryrefslogtreecommitdiffstats
path: root/media/omx-plugin/lib/ics/libutils/libutils.cpp
blob: 67f5a540a817d841c5cfaf905e31f10d0310c080 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim:set ts=2 sw=2 sts=2 et cindent: */
/* 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/. */
#include "mozilla/Types.h"
#include "utils/RefBase.h"
#include "utils/String16.h"
#include "utils/String8.h"
#include "utils/Vector.h"

namespace android {
MOZ_EXPORT RefBase::RefBase() : mRefs(0)
{
}

MOZ_EXPORT RefBase::~RefBase()
{
}

MOZ_EXPORT void RefBase::incStrong(const void *id) const
{
}

MOZ_EXPORT void RefBase::decStrong(const void *id) const
{
}

MOZ_EXPORT void RefBase::onFirstRef()
{
}

MOZ_EXPORT void RefBase::onLastStrongRef(const void* id)
{
}

MOZ_EXPORT bool RefBase::onIncStrongAttempted(uint32_t flags, const void* id)
{
  return false;
}

MOZ_EXPORT void RefBase::onLastWeakRef(void const* id)
{
}

MOZ_EXPORT String16::String16(char const*)
{
}

MOZ_EXPORT String16::~String16()
{
}

MOZ_EXPORT String8::String8()
{
}

MOZ_EXPORT String8::String8(const String8 &)
{
}

MOZ_EXPORT String8::~String8()
{
}

MOZ_EXPORT VectorImpl::VectorImpl(size_t, uint32_t)
  : mFlags(0), mItemSize(0)
{
}

MOZ_EXPORT VectorImpl::VectorImpl(const VectorImpl &)
  : mFlags(0), mItemSize(0)
{
}

MOZ_EXPORT VectorImpl::~VectorImpl()
{
}

MOZ_EXPORT void VectorImpl::finish_vector()
{
}

}