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

Side by Side Diff: ppapi/thunk/resource_creation_api.h

Issue 9666020: Add a private PPB_Talk_Private interface. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix semicolon Created 8 years, 9 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_THUNK_RESOURCE_CREATION_API_H_ 5 #ifndef PPAPI_THUNK_RESOURCE_CREATION_API_H_
6 #define PPAPI_THUNK_RESOURCE_CREATION_API_H_ 6 #define PPAPI_THUNK_RESOURCE_CREATION_API_H_
7 7
8 #include "ppapi/c/dev/ppb_audio_input_dev.h" 8 #include "ppapi/c/dev/ppb_audio_input_dev.h"
9 #include "ppapi/c/dev/ppb_file_chooser_dev.h" 9 #include "ppapi/c/dev/ppb_file_chooser_dev.h"
10 #include "ppapi/c/dev/ppb_video_layer_dev.h" 10 #include "ppapi/c/dev/ppb_video_layer_dev.h"
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
106 const PP_Point* mouse_movement) = 0; 106 const PP_Point* mouse_movement) = 0;
107 virtual PP_Resource CreateNetworkMonitor( 107 virtual PP_Resource CreateNetworkMonitor(
108 PP_Instance instance, 108 PP_Instance instance,
109 PPB_NetworkMonitor_Callback callback, 109 PPB_NetworkMonitor_Callback callback,
110 void* user_data) = 0; 110 void* user_data) = 0;
111 virtual PP_Resource CreateResourceArray(PP_Instance instance, 111 virtual PP_Resource CreateResourceArray(PP_Instance instance,
112 const PP_Resource elements[], 112 const PP_Resource elements[],
113 uint32_t size) = 0; 113 uint32_t size) = 0;
114 virtual PP_Resource CreateScrollbar(PP_Instance instance, 114 virtual PP_Resource CreateScrollbar(PP_Instance instance,
115 PP_Bool vertical) = 0; 115 PP_Bool vertical) = 0;
116 virtual PP_Resource CreateTalk(PP_Instance instance) = 0;
116 virtual PP_Resource CreateTCPServerSocketPrivate(PP_Instance instance) = 0; 117 virtual PP_Resource CreateTCPServerSocketPrivate(PP_Instance instance) = 0;
117 virtual PP_Resource CreateTCPSocketPrivate(PP_Instance instace) = 0; 118 virtual PP_Resource CreateTCPSocketPrivate(PP_Instance instace) = 0;
118 virtual PP_Resource CreateTransport(PP_Instance instance, 119 virtual PP_Resource CreateTransport(PP_Instance instance,
119 const char* name, 120 const char* name,
120 PP_TransportType type) = 0; 121 PP_TransportType type) = 0;
121 virtual PP_Resource CreateUDPSocketPrivate(PP_Instance instace) = 0; 122 virtual PP_Resource CreateUDPSocketPrivate(PP_Instance instace) = 0;
122 virtual PP_Resource CreateURLLoader(PP_Instance instance) = 0; 123 virtual PP_Resource CreateURLLoader(PP_Instance instance) = 0;
123 virtual PP_Resource CreateURLRequestInfo( 124 virtual PP_Resource CreateURLRequestInfo(
124 PP_Instance instance, 125 PP_Instance instance,
125 const PPB_URLRequestInfo_Data& data) = 0; 126 const PPB_URLRequestInfo_Data& data) = 0;
(...skipping 13 matching lines...) Expand all
139 const PP_FloatPoint* wheel_ticks, 140 const PP_FloatPoint* wheel_ticks,
140 PP_Bool scroll_by_page) = 0; 141 PP_Bool scroll_by_page) = 0;
141 142
142 static const ApiID kApiID = API_ID_RESOURCE_CREATION; 143 static const ApiID kApiID = API_ID_RESOURCE_CREATION;
143 }; 144 };
144 145
145 } // namespace thunk 146 } // namespace thunk
146 } // namespace ppapi 147 } // namespace ppapi
147 148
148 #endif // PPAPI_THUNK_RESOURCE_CREATION_API_H_ 149 #endif // PPAPI_THUNK_RESOURCE_CREATION_API_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698