Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(582)

Unified Diff: ppapi/shared_impl/socket_option_data.h

Issue 16959005: Implement PPB_UDPSocket_Dev: part 2 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ppapi/proxy/udp_socket_resource_base.cc ('k') | ppapi/shared_impl/socket_option_data.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/shared_impl/socket_option_data.h
diff --git a/ppapi/shared_impl/socket_option_data.h b/ppapi/shared_impl/socket_option_data.h
new file mode 100644
index 0000000000000000000000000000000000000000..d77ea7347622e94c6303da15bd9e4f3db4ad6358
--- /dev/null
+++ b/ppapi/shared_impl/socket_option_data.h
@@ -0,0 +1,39 @@
+// Copyright (c) 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_
« no previous file with comments | « ppapi/proxy/udp_socket_resource_base.cc ('k') | ppapi/shared_impl/socket_option_data.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698