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

Unified Diff: ppapi/proxy/dispatcher.h

Issue 4729002: Fix clang build by removing redundant "const" (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 10 years, 1 month 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/proxy/dispatcher.h
===================================================================
--- ppapi/proxy/dispatcher.h (revision 65614)
+++ ppapi/proxy/dispatcher.h (working copy)
@@ -55,8 +55,8 @@
public IPC::Message::Sender {
public:
typedef const void* (*GetInterfaceFunc)(const char*);
- typedef const int32_t (*InitModuleFunc)(PP_Module, GetInterfaceFunc);
- typedef const void (*ShutdownModuleFunc)();
+ typedef int32_t (*InitModuleFunc)(PP_Module, GetInterfaceFunc);
+ typedef void (*ShutdownModuleFunc)();
~Dispatcher();
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698