diff options
-rw-r--r-- | chrome/plugin/webplugin_proxy.cc | 2 | ||||
-rw-r--r-- | chrome/plugin/webplugin_proxy.h | 2 | ||||
-rw-r--r-- | webkit/glue/webplugin.h | 2 | ||||
-rw-r--r-- | webkit/glue/webplugin_impl.h | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/chrome/plugin/webplugin_proxy.cc b/chrome/plugin/webplugin_proxy.cc index a05113b..469d92f 100644 --- a/chrome/plugin/webplugin_proxy.cc +++ b/chrome/plugin/webplugin_proxy.cc @@ -257,7 +257,7 @@ void WebPluginProxy::OnResourceCreated(int resource_id, } void WebPluginProxy::HandleURLRequest(const char* url, - const char *method, + const char* method, const char* target, const char* buf, unsigned int len, diff --git a/chrome/plugin/webplugin_proxy.h b/chrome/plugin/webplugin_proxy.h index 5fc699c..da8f420 100644 --- a/chrome/plugin/webplugin_proxy.h +++ b/chrome/plugin/webplugin_proxy.h @@ -108,7 +108,7 @@ class WebPluginProxy : public webkit_glue::WebPlugin { webkit_glue::WebPluginResourceClient* client); void HandleURLRequest(const char* url, - const char *method, + const char* method, const char* target, const char* buf, unsigned int len, diff --git a/webkit/glue/webplugin.h b/webkit/glue/webplugin.h index 1c79876..d83601a 100644 --- a/webkit/glue/webplugin.h +++ b/webkit/glue/webplugin.h @@ -117,7 +117,7 @@ class WebPlugin { // by plugins. If the plugin wants notification of the result, notify_id will // be non-zero. virtual void HandleURLRequest(const char* url, - const char *method, + const char* method, const char* target, const char* buf, unsigned int len, diff --git a/webkit/glue/webplugin_impl.h b/webkit/glue/webplugin_impl.h index fbe9ff6..d747d27 100644 --- a/webkit/glue/webplugin_impl.h +++ b/webkit/glue/webplugin_impl.h @@ -229,7 +229,7 @@ class WebPluginImpl : public WebPlugin, WebPluginResourceClient* client); void HandleURLRequestInternal(const char* url, - const char *method, + const char* method, const char* target, const char* buf, unsigned int len, |