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

Unified Diff: native_client_sdk/src/tests/nacl_io_test/fake_ppapi/fake_host_resolver_interface.h

Issue 148223005: [NaCl SDK] Add fake for ppb_host_resolver and ppb_net_address (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 11 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
Index: native_client_sdk/src/tests/nacl_io_test/fake_ppapi/fake_host_resolver_interface.h
diff --git a/native_client_sdk/src/tests/nacl_io_test/fake_ppapi/fake_host_resolver_interface.h b/native_client_sdk/src/tests/nacl_io_test/fake_ppapi/fake_host_resolver_interface.h
new file mode 100644
index 0000000000000000000000000000000000000000..62f0473dc768772033645c48fd43ccfb52c5c788
--- /dev/null
+++ b/native_client_sdk/src/tests/nacl_io_test/fake_ppapi/fake_host_resolver_interface.h
@@ -0,0 +1,38 @@
+// Copyright 2014 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 TESTS_NACL_IO_TEST_FAKE_HOST_RESOLVER_INTERFACE_H
binji 2014/01/28 18:13:22 nit: underscore at end of guard
Sam Clegg 2014/01/28 19:55:22 Done.
+#define TESTS_NACL_IO_TEST_FAKE_HOST_RESOLVER_INTERFACE_H
+
+#include <ppapi/c/ppb_host_resolver.h>
+
+#include "nacl_io/pepper_interface.h"
+#include "sdk_util/macros.h"
+
+class FakeVarManager;
binji 2014/01/28 18:13:22 nit: alphabetize here and other new files
Sam Clegg 2014/01/28 19:55:22 Done.
+class FakePepperInterface;
+
+class FakeHostResolverInterface : public nacl_io::HostResolverInterface {
+ public:
+ explicit FakeHostResolverInterface(FakePepperInterface* ppapi);
+
+ virtual PP_Resource Create(PP_Instance);
+
+ virtual int32_t Resolve(PP_Resource,
+ const char*,
+ uint16_t,
+ const PP_HostResolver_Hint*,
+ PP_CompletionCallback);
+
+ virtual PP_Var GetCanonicalName(PP_Resource);
+ virtual uint32_t GetNetAddressCount(PP_Resource);
+ virtual PP_Resource GetNetAddress(PP_Resource, uint32_t);
+
+ private:
+ FakePepperInterface* ppapi_;
+
+ DISALLOW_COPY_AND_ASSIGN(FakeHostResolverInterface);
+};
+
+#endif // TESTS_NACL_IO_TEST_FAKE_HOST_RESOLVER_INTERFACE_H

Powered by Google App Engine
This is Rietveld 408576698