Index: content/renderer/pepper/host_dispatcher_wrapper.cc |
diff --git a/content/renderer/pepper/host_dispatcher_wrapper.cc b/content/renderer/pepper/host_dispatcher_wrapper.cc |
index e55aec0afc242c557154629afcc1f08be4b4805f..606d2815c41967537eb549d784711f091bed69d9 100644 |
--- a/content/renderer/pepper/host_dispatcher_wrapper.cc |
+++ b/content/renderer/pepper/host_dispatcher_wrapper.cc |
@@ -25,11 +25,9 @@ HostDispatcherWrapper::HostDispatcherWrapper( |
peer_pid_(peer_pid), |
plugin_child_id_(plugin_child_id), |
permissions_(perms), |
- is_external_(is_external) { |
-} |
+ is_external_(is_external) {} |
-HostDispatcherWrapper::~HostDispatcherWrapper() { |
-} |
+HostDispatcherWrapper::~HostDispatcherWrapper() {} |
bool HostDispatcherWrapper::Init(const IPC::ChannelHandle& channel_handle, |
PP_GetInterface_Func local_get_interface, |
@@ -100,9 +98,7 @@ void HostDispatcherWrapper::RemoveInstance(PP_Instance instance) { |
RenderFrame* render_frame = host->GetRenderFrameForInstance(instance); |
if (render_frame) { |
render_frame->Send(new ViewHostMsg_DidDeleteOutOfProcessPepperInstance( |
- plugin_child_id_, |
- instance, |
- is_external_)); |
+ plugin_child_id_, instance, is_external_)); |
} |
} |
} |