OLD | NEW |
---|---|
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 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
73 | 73 |
74 // Must be last to indicate the number of interface IDs. | 74 // Must be last to indicate the number of interface IDs. |
75 API_ID_COUNT | 75 API_ID_COUNT |
76 }; | 76 }; |
77 | 77 |
78 // These IDs are used to access singleton resource objects using | 78 // These IDs are used to access singleton resource objects using |
79 // PPB_Instance_API.GetSingletonResource. | 79 // PPB_Instance_API.GetSingletonResource. |
80 enum SingletonResourceID { | 80 enum SingletonResourceID { |
81 FLASH_SINGLETON_ID, | 81 FLASH_SINGLETON_ID, |
82 FLASH_CLIPBOARD_SINGLETON_ID, | 82 FLASH_CLIPBOARD_SINGLETON_ID, |
83 FLASH_FULLSCREEN_SINGLETON_ID, | |
dmichael (off chromium)
2012/11/27 20:58:01
I thought you were going to put these in a separat
raymes
2012/11/27 21:24:28
Yep I have in the other CL, I just hadn't rebased
| |
83 GAMEPAD_SINGLETON_ID, | 84 GAMEPAD_SINGLETON_ID, |
84 }; | 85 }; |
85 | 86 |
86 } // namespace ppapi | 87 } // namespace ppapi |
87 | 88 |
88 #endif // PPAPI_SHARED_IMPL_API_ID_H_ | 89 #endif // PPAPI_SHARED_IMPL_API_ID_H_ |
OLD | NEW |