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

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

Issue 4985001: Initial audio implementation. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 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
« no previous file with comments | « ppapi/proxy/host_dispatcher.cc ('k') | ppapi/proxy/plugin_dispatcher.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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_INTERFACE_ID_H_ 5 #ifndef PPAPI_PROXY_INTERFACE_ID_H_
6 #define PPAPI_PROXY_INTERFACE_ID_H_ 6 #define PPAPI_PROXY_INTERFACE_ID_H_
7 7
8 namespace pp { 8 namespace pp {
9 namespace proxy { 9 namespace proxy {
10 10
11 // These numbers must be all small integers. They are used in a lookup table 11 // These numbers must be all small integers. They are used in a lookup table
12 // to route messages to the appropriate message handler. 12 // to route messages to the appropriate message handler.
13 enum InterfaceID { 13 enum InterfaceID {
14 // Zero is reserved for control messages. 14 // Zero is reserved for control messages.
15 INTERFACE_ID_PPB_BUFFER = 1, 15 INTERFACE_ID_PPB_AUDIO = 1,
16 INTERFACE_ID_PPB_AUDIO_CONFIG,
17 INTERFACE_ID_PPB_BUFFER,
16 INTERFACE_ID_PPB_CHAR_SET, 18 INTERFACE_ID_PPB_CHAR_SET,
17 INTERFACE_ID_PPB_CORE, 19 INTERFACE_ID_PPB_CORE,
18 INTERFACE_ID_PPB_CURSORCONTROL, 20 INTERFACE_ID_PPB_CURSORCONTROL,
19 INTERFACE_ID_PPB_FLASH, 21 INTERFACE_ID_PPB_FLASH,
20 INTERFACE_ID_PPB_FONT, 22 INTERFACE_ID_PPB_FONT,
21 INTERFACE_ID_PPB_FULLSCREEN, 23 INTERFACE_ID_PPB_FULLSCREEN,
22 INTERFACE_ID_PPB_GRAPHICS_2D, 24 INTERFACE_ID_PPB_GRAPHICS_2D,
23 INTERFACE_ID_PPB_IMAGE_DATA, 25 INTERFACE_ID_PPB_IMAGE_DATA,
24 INTERFACE_ID_PPB_INSTANCE, 26 INTERFACE_ID_PPB_INSTANCE,
25 INTERFACE_ID_PPB_PDF, 27 INTERFACE_ID_PPB_PDF,
26 INTERFACE_ID_PPB_TESTING, 28 INTERFACE_ID_PPB_TESTING,
27 INTERFACE_ID_PPB_URL_LOADER, 29 INTERFACE_ID_PPB_URL_LOADER,
28 INTERFACE_ID_PPB_URL_REQUEST_INFO, 30 INTERFACE_ID_PPB_URL_REQUEST_INFO,
29 INTERFACE_ID_PPB_URL_RESPONSE_INFO, 31 INTERFACE_ID_PPB_URL_RESPONSE_INFO,
30 INTERFACE_ID_PPB_VAR, 32 INTERFACE_ID_PPB_VAR,
31 INTERFACE_ID_PPB_VAR_DEPRECATED, 33 INTERFACE_ID_PPB_VAR_DEPRECATED,
32 34
33 INTERFACE_ID_PPP_CLASS, 35 INTERFACE_ID_PPP_CLASS,
34 INTERFACE_ID_PPP_INSTANCE, 36 INTERFACE_ID_PPP_INSTANCE,
35 37
36 // Must be last to indicate the number of interface IDs. 38 // Must be last to indicate the number of interface IDs.
37 INTERFACE_ID_COUNT 39 INTERFACE_ID_COUNT
38 }; 40 };
39 41
40 } // namespace proxy 42 } // namespace proxy
41 } // namespace pp 43 } // namespace pp
42 44
43 #endif // PPAPI_PROXY_INTERFACE_ID_H_ 45 #endif // PPAPI_PROXY_INTERFACE_ID_H_
OLDNEW
« no previous file with comments | « ppapi/proxy/host_dispatcher.cc ('k') | ppapi/proxy/plugin_dispatcher.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698