summaryrefslogtreecommitdiffstats
path: root/ppapi/shared_impl/socket_option_data.h
blob: 2c8845482c2e648f513366d6eb32315a695b5638 (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
// Copyright 2013 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 PPAPI_SHARED_IMPL_SOCKET_OPTION_DATA_H_
#define PPAPI_SHARED_IMPL_SOCKET_OPTION_DATA_H_

#include "ppapi/c/pp_stdint.h"
#include "ppapi/shared_impl/ppapi_shared_export.h"

namespace ppapi {

class PPAPI_SHARED_EXPORT SocketOptionData {
 public:
  enum Type { TYPE_INVALID = 0, TYPE_BOOL = 1, TYPE_INT32 = 2 };

  SocketOptionData();
  ~SocketOptionData();

  Type GetType() const;

  bool GetBool(bool* out_value) const;
  bool GetInt32(int32_t* out_value) const;

  void SetBool(bool value);
  void SetInt32(int32_t value);

 private:
  Type type_;
  int32_t value_;
};

}  // namespace ppapi

#endif  // PPAPI_SHARED_IMPL_SOCKET_OPTION_DATA_H_