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

Side by Side Diff: ppapi/native_client/src/shared/ppapi_proxy/untrusted/srpcgen/ppb_rpc.h

Issue 9129007: Work on improving PpbAudioConfig:RecommendSampleFrameCount (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 10 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium 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 // WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING 5 // WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING
6 // 6 //
7 // Automatically generated code. See srpcgen.py 7 // Automatically generated code. See srpcgen.py
8 // 8 //
9 // NaCl Simple Remote Procedure Call interface abstractions. 9 // NaCl Simple Remote Procedure Call interface abstractions.
10 10
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 static NaClSrpcError PPB_AudioConfig_CreateStereo16Bit( 86 static NaClSrpcError PPB_AudioConfig_CreateStereo16Bit(
87 NaClSrpcChannel* channel, 87 NaClSrpcChannel* channel,
88 PP_Instance instance, 88 PP_Instance instance,
89 int32_t sample_rate, 89 int32_t sample_rate,
90 int32_t sample_frame_count, 90 int32_t sample_frame_count,
91 PP_Resource* resource); 91 PP_Resource* resource);
92 static NaClSrpcError PPB_AudioConfig_IsAudioConfig( 92 static NaClSrpcError PPB_AudioConfig_IsAudioConfig(
93 NaClSrpcChannel* channel, 93 NaClSrpcChannel* channel,
94 PP_Resource resource, 94 PP_Resource resource,
95 int32_t* out_bool); 95 int32_t* out_bool);
96 static NaClSrpcError PPB_AudioConfig_RecommendSampleFrameCount( 96 static NaClSrpcError PPB_AudioConfig_RecommendSampleFrameCount_1_0(
97 NaClSrpcChannel* channel, 97 NaClSrpcChannel* channel,
98 int32_t request_sample_rate, 98 int32_t request_sample_rate,
99 int32_t request_sample_frame_count, 99 int32_t request_sample_frame_count,
100 int32_t* out_sample_frame_count); 100 int32_t* out_sample_frame_count);
101 static NaClSrpcError PPB_AudioConfig_RecommendSampleFrameCount(
102 NaClSrpcChannel* channel,
103 PP_Instance instance,
104 int32_t request_sample_rate,
105 int32_t request_sample_frame_count,
106 int32_t* out_sample_frame_count);
101 static NaClSrpcError PPB_AudioConfig_GetSampleRate( 107 static NaClSrpcError PPB_AudioConfig_GetSampleRate(
102 NaClSrpcChannel* channel, 108 NaClSrpcChannel* channel,
103 PP_Resource resource, 109 PP_Resource resource,
104 int32_t* sample_rate); 110 int32_t* sample_rate);
105 static NaClSrpcError PPB_AudioConfig_GetSampleFrameCount( 111 static NaClSrpcError PPB_AudioConfig_GetSampleFrameCount(
106 NaClSrpcChannel* channel, 112 NaClSrpcChannel* channel,
107 PP_Resource resource, 113 PP_Resource resource,
108 int32_t* sample_frame_count); 114 int32_t* sample_frame_count);
115 static NaClSrpcError PPB_AudioConfig_RecommendSampleRate(
116 NaClSrpcChannel* channel,
117 PP_Instance instance,
118 int32_t* sample_rate);
109 119
110 private: 120 private:
111 PpbAudioConfigRpcClient(); 121 PpbAudioConfigRpcClient();
112 PpbAudioConfigRpcClient(const PpbAudioConfigRpcClient&); 122 PpbAudioConfigRpcClient(const PpbAudioConfigRpcClient&);
113 void operator=(const PpbAudioConfigRpcClient); 123 void operator=(const PpbAudioConfigRpcClient);
114 }; // class PpbAudioConfigRpcClient 124 }; // class PpbAudioConfigRpcClient
115 125
116 class PpbCoreRpcClient { 126 class PpbCoreRpcClient {
117 public: 127 public:
118 static NaClSrpcError PPB_Core_AddRefResource( 128 static NaClSrpcError PPB_Core_AddRefResource(
(...skipping 1132 matching lines...) Expand 10 before | Expand all | Expand 10 after
1251 PpbZoomRpcClient(); 1261 PpbZoomRpcClient();
1252 PpbZoomRpcClient(const PpbZoomRpcClient&); 1262 PpbZoomRpcClient(const PpbZoomRpcClient&);
1253 void operator=(const PpbZoomRpcClient); 1263 void operator=(const PpbZoomRpcClient);
1254 }; // class PpbZoomRpcClient 1264 }; // class PpbZoomRpcClient
1255 1265
1256 1266
1257 1267
1258 1268
1259 #endif // GEN_PPAPI_PROXY_PPB_RPC_H_ 1269 #endif // GEN_PPAPI_PROXY_PPB_RPC_H_
1260 1270
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698