summaryrefslogtreecommitdiffstats
path: root/ipc/chromium/src/mojo/core/ports/user_data.h
blob: f3d568c259df01e8558b1f56bf8bbf9551b71034 (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
// Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef MOJO_CORE_PORTS_USER_DATA_H_
#define MOJO_CORE_PORTS_USER_DATA_H_

#include "nsISupportsImpl.h"

namespace mojo {
namespace core {
namespace ports {

class UserData {
  NS_INLINE_DECL_THREADSAFE_REFCOUNTING(UserData);

 protected:
  virtual ~UserData() = default;
};

}  // namespace ports
}  // namespace core
}  // namespace mojo

#endif  // MOJO_CORE_PORTS_USER_DATA_H_