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

Side by Side Diff: ppapi/proxy/ppb_flash_proxy.h

Issue 10342013: Generate and connect a Pepper identifier for Chrome OS (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: cleanup as per brettw; move to serializedreturnvar in the host msg bounce step Created 8 years, 7 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 #ifndef PPAPI_PROXY_PPB_FLASH_PROXY_H_ 5 #ifndef PPAPI_PROXY_PPB_FLASH_PROXY_H_
6 #define PPAPI_PROXY_PPB_FLASH_PROXY_H_ 6 #define PPAPI_PROXY_PPB_FLASH_PROXY_H_
7 7
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after
180 int32_t* result); 180 int32_t* result);
181 void OnHostMsgOpenFileRef(PP_Instance instance, 181 void OnHostMsgOpenFileRef(PP_Instance instance,
182 const ppapi::HostResource& host_resource, 182 const ppapi::HostResource& host_resource,
183 int32_t mode, 183 int32_t mode,
184 IPC::PlatformFileForTransit* file_handle, 184 IPC::PlatformFileForTransit* file_handle,
185 int32_t* result); 185 int32_t* result);
186 void OnHostMsgQueryFileRef(PP_Instance instance, 186 void OnHostMsgQueryFileRef(PP_Instance instance,
187 const ppapi::HostResource& host_resource, 187 const ppapi::HostResource& host_resource,
188 PP_FileInfo* info, 188 PP_FileInfo* info,
189 int32_t* result); 189 int32_t* result);
190 void OnHostMsgGetDeviceID(PP_Instance instance,
191 SerializedVarReturnValue id);
190 192
191 DISALLOW_COPY_AND_ASSIGN(PPB_Flash_Proxy); 193 DISALLOW_COPY_AND_ASSIGN(PPB_Flash_Proxy);
192 }; 194 };
193 195
194 } // namespace proxy 196 } // namespace proxy
195 } // namespace ppapi 197 } // namespace ppapi
196 198
197 #endif // PPAPI_PROXY_PPB_FLASH_PROXY_H_ 199 #endif // PPAPI_PROXY_PPB_FLASH_PROXY_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698