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

Unified Diff: ppapi/proxy/interface_list.h

Issue 7874002: This patch tries to remove most of the manual registration for Pepper interfaces, and replaces it... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ppapi/proxy/interface_id.h ('k') | ppapi/proxy/interface_list.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/proxy/interface_list.h
===================================================================
--- ppapi/proxy/interface_list.h (revision 100758)
+++ ppapi/proxy/interface_list.h (working copy)
@@ -39,23 +39,23 @@
struct InterfaceInfo {
InterfaceInfo()
: id(INTERFACE_ID_NONE),
- interface(NULL) {
+ iface(NULL) {
}
InterfaceInfo(InterfaceID in_id, const void* in_interface)
: id(in_id),
- interface(in_interface) {
+ iface(in_interface) {
}
InterfaceID id;
- const void* interface;
+ const void* iface;
};
typedef std::map<std::string, InterfaceInfo> NameToInterfaceInfoMap;
void AddProxy(InterfaceID id, InterfaceProxy::Factory factory);
- void AddPPB(const char* name, InterfaceID id, const void* interface);
- void AddPPP(const char* name, InterfaceID id, const void* interface);
+ void AddPPB(const char* name, InterfaceID id, const void* iface);
+ void AddPPP(const char* name, InterfaceID id, const void* iface);
// Old-style add functions. These should be removed when the rest of the
// proxies are converted over to using the new system.
« no previous file with comments | « ppapi/proxy/interface_id.h ('k') | ppapi/proxy/interface_list.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698