diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-11-10 05:42:46 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-11-10 05:42:46 +0000 |
commit | 9c7baaef685eb19e5dc013f491a671630d9679f4 (patch) | |
tree | 0d43bb3ca05992a27aa2b7aa29928cf0bc13e1dc /ppapi | |
parent | 5afdcd027d535edb6f03a99f8c2689246ed5ea39 (diff) | |
download | chromium_src-9c7baaef685eb19e5dc013f491a671630d9679f4.zip chromium_src-9c7baaef685eb19e5dc013f491a671630d9679f4.tar.gz chromium_src-9c7baaef685eb19e5dc013f491a671630d9679f4.tar.bz2 |
Fix clang build by removing redundant "const"
TEST=none
BUG=none
Review URL: http://codereview.chromium.org/4729002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65632 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi')
-rw-r--r-- | ppapi/proxy/dispatcher.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ppapi/proxy/dispatcher.h b/ppapi/proxy/dispatcher.h index 412b2d8..356dbcf 100644 --- a/ppapi/proxy/dispatcher.h +++ b/ppapi/proxy/dispatcher.h @@ -55,8 +55,8 @@ class Dispatcher : public IPC::Channel::Listener, 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(); |