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

Side by Side Diff: ppapi/shared_impl/api_id.h

Issue 11416363: Implementation of URLLoader using PluginResource/ResourceHost. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 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 | 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_SHARED_IMPL_API_ID_H_ 5 #ifndef PPAPI_SHARED_IMPL_API_ID_H_
6 #define PPAPI_SHARED_IMPL_API_ID_H_ 6 #define PPAPI_SHARED_IMPL_API_ID_H_
7 7
8 namespace ppapi { 8 namespace ppapi {
9 9
10 // These numbers must be all small integers. They are used in a lookup table 10 // These numbers must be all small integers. They are used in a lookup table
(...skipping 28 matching lines...) Expand all
39 API_ID_PPB_NETWORKMANAGER_PRIVATE, 39 API_ID_PPB_NETWORKMANAGER_PRIVATE,
40 API_ID_PPB_OPENGLES2, 40 API_ID_PPB_OPENGLES2,
41 API_ID_PPB_PDF, 41 API_ID_PPB_PDF,
42 API_ID_PPB_SURFACE_3D, 42 API_ID_PPB_SURFACE_3D,
43 API_ID_PPB_TCPSERVERSOCKET_PRIVATE, 43 API_ID_PPB_TCPSERVERSOCKET_PRIVATE,
44 API_ID_PPB_TCPSOCKET_PRIVATE, 44 API_ID_PPB_TCPSOCKET_PRIVATE,
45 API_ID_PPB_TALK, 45 API_ID_PPB_TALK,
46 API_ID_PPB_TESTING, 46 API_ID_PPB_TESTING,
47 API_ID_PPB_TEXT_INPUT, 47 API_ID_PPB_TEXT_INPUT,
48 API_ID_PPB_UDPSOCKET_PRIVATE, 48 API_ID_PPB_UDPSOCKET_PRIVATE,
49 API_ID_PPB_URL_LOADER,
50 API_ID_PPB_URL_RESPONSE_INFO, 49 API_ID_PPB_URL_RESPONSE_INFO,
51 API_ID_PPB_VAR_ARRAY_BUFFER, 50 API_ID_PPB_VAR_ARRAY_BUFFER,
52 API_ID_PPB_VAR_DEPRECATED, 51 API_ID_PPB_VAR_DEPRECATED,
53 API_ID_PPB_VIDEO_CAPTURE_DEV, 52 API_ID_PPB_VIDEO_CAPTURE_DEV,
54 API_ID_PPB_VIDEO_DECODER_DEV, 53 API_ID_PPB_VIDEO_DECODER_DEV,
55 API_ID_PPB_X509_CERTIFICATE_PRIVATE, 54 API_ID_PPB_X509_CERTIFICATE_PRIVATE,
56 55
57 API_ID_PPP_CLASS, 56 API_ID_PPP_CLASS,
58 // TODO(tomfinegan): Remove this after we refactor things to load the PPP 57 // TODO(tomfinegan): Remove this after we refactor things to load the PPP
59 // interface struct from the PPB interface. 58 // interface struct from the PPB interface.
(...skipping 11 matching lines...) Expand all
71 70
72 API_ID_RESOURCE_CREATION, 71 API_ID_RESOURCE_CREATION,
73 72
74 // Must be last to indicate the number of interface IDs. 73 // Must be last to indicate the number of interface IDs.
75 API_ID_COUNT 74 API_ID_COUNT
76 }; 75 };
77 76
78 } // namespace ppapi 77 } // namespace ppapi
79 78
80 #endif // PPAPI_SHARED_IMPL_API_ID_H_ 79 #endif // PPAPI_SHARED_IMPL_API_ID_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698