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

Side by Side Diff: ppapi/native_client/src/shared/ppapi_proxy/ppb_testing.srpc

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 unified diff | Download patch
OLDNEW
1 # Copyright (c) 2011 The Native Client Authors. All rights reserved. 1 # Copyright (c) 2011 The Native Client Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 # RPC methods used to implement PPB_Testing calls from the plugin. 5 # RPC methods used to implement PPB_Testing calls from the plugin.
6 # See ppapi/c/dev/ppb_testing_dev.h for interface details. 6 # See ppapi/c/dev/ppb_testing_dev.h for interface details.
7 { 7 {
8 'name': 'PpbTestingRpc', 8 'name': 'PpbTestingRpc',
9 'rpcs': [ 9 'rpcs': [
10 {'name': 'PPB_Testing_ReadImageData', 10 {'name': 'PPB_Testing_ReadImageData',
(...skipping 15 matching lines...) Expand all
26 ], 26 ],
27 'outputs': [ 27 'outputs': [
28 ] 28 ]
29 }, 29 },
30 {'name': 'PPB_Testing_GetLiveObjectsForInstance', 30 {'name': 'PPB_Testing_GetLiveObjectsForInstance',
31 'inputs': [['instance', 'PP_Instance'], 31 'inputs': [['instance', 'PP_Instance'],
32 ], 32 ],
33 'outputs': [['live_object_count', 'int32_t'], # uint32_t 33 'outputs': [['live_object_count', 'int32_t'], # uint32_t
34 ] 34 ]
35 }, 35 },
36 {'name': 'PPB_Testing_GetDocumentURL',
37 'inputs': [['instance', 'PP_Instance'],
38 ],
39 'outputs': [['components', 'char[]'], # PP_URLComponents_Dev
40 ['url', 'char[]'], # PP_Var
41 ]
42 },
36 ] 43 ]
37 } 44 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698