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

Unified Diff: ppapi/native_client/src/shared/ppapi_proxy/plugin_ppb_testing.cc

Issue 8840007: GetDocumentURL is added to PPB_Testing_Dev. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Fixed codereview issues. Created 9 years 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: ppapi/native_client/src/shared/ppapi_proxy/plugin_ppb_testing.cc
diff --git a/ppapi/native_client/src/shared/ppapi_proxy/plugin_ppb_testing.cc b/ppapi/native_client/src/shared/ppapi_proxy/plugin_ppb_testing.cc
index 7c5a8a60404ff4def723085eb19614507772049a..6b928ecded0ea551df6aba5c37a55082d875e288 100644
--- a/ppapi/native_client/src/shared/ppapi_proxy/plugin_ppb_testing.cc
+++ b/ppapi/native_client/src/shared/ppapi_proxy/plugin_ppb_testing.cc
@@ -4,6 +4,9 @@
#include "native_client/src/shared/ppapi_proxy/plugin_ppb_testing.h"
+#include <cstddef>
+#include <new>
+
#include "native_client/src/include/nacl_scoped_ptr.h"
#include "native_client/src/include/portability.h"
#include "native_client/src/shared/ppapi_proxy/object_serialize.h"
@@ -23,6 +26,8 @@ namespace {
const nacl_abi_size_t kPPPointBytes =
static_cast<nacl_abi_size_t>(sizeof(struct PP_Point));
+const nacl_abi_size_t kPPURLComponentsDevBytes =
+ static_cast<nacl_abi_size_t>(sizeof(struct PP_URLComponents_Dev));
PP_Bool ReadImageData(PP_Resource device_context_2d,
PP_Resource image,
@@ -97,6 +102,35 @@ PP_Bool IsOutOfProcess() {
return PP_FALSE;
}
+struct PP_Var GetDocumentURL(PP_Instance instance,
+ struct PP_URLComponents_Dev* components) {
+ DebugPrintf("PPB_Testing::GetDocumentURL: "
+ "instance=%"NACL_PRIu32"\n", instance);
+
+ NaClSrpcChannel* channel = GetMainSrpcChannel();
+ nacl_abi_size_t components_size = kPPURLComponentsDevBytes;
+ nacl_abi_size_t url_size = kMaxVarSize;
+ nacl::scoped_array<char> url_bytes(new (std::nothrow) char[url_size]);
+ if (url_bytes.get() == NULL)
+ return PP_MakeUndefined();
+
+ NaClSrpcError srpc_result =
+ PpbTestingRpcClient::PPB_Testing_GetDocumentURL(
+ channel,
+ instance,
+ &components_size, reinterpret_cast<char*>(components),
+ &url_size, url_bytes.get());
+
+ struct PP_Var url = PP_MakeUndefined();
+ if (srpc_result == NACL_SRPC_RESULT_OK)
+ (void) DeserializeTo(url_bytes.get(), url_size, 1, &url);
+
+ DebugPrintf("PPB_Testing::GetDocumentURL: %s\n",
+ NaClSrpcErrorString(srpc_result));
+
+ return url;
+}
+
} // namespace
const PPB_Testing_Dev* PluginTesting::GetInterface() {
@@ -105,7 +139,9 @@ const PPB_Testing_Dev* PluginTesting::GetInterface() {
RunMessageLoop,
QuitMessageLoop,
GetLiveObjectsForInstance,
- IsOutOfProcess
+ IsOutOfProcess,
+ NULL,
+ GetDocumentURL
};
return &testing_interface;
}
« no previous file with comments | « ppapi/native_client/src/shared/ppapi_proxy/plugin_ppb.cc ('k') | ppapi/native_client/src/shared/ppapi_proxy/ppb_rpc_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698