| Index: remoting/client/plugin/pepper_view_proxy.cc
|
| diff --git a/remoting/client/plugin/pepper_view_proxy.cc b/remoting/client/plugin/pepper_view_proxy.cc
|
| index 119f15498e808907bcfbf49f14dcb805e9a591b0..66ec46c4e6d6349f57699b2cb0aeaf5646aade3f 100644
|
| --- a/remoting/client/plugin/pepper_view_proxy.cc
|
| +++ b/remoting/client/plugin/pepper_view_proxy.cc
|
| @@ -84,17 +84,6 @@ void PepperViewProxy::SetConnectionState(
|
| view_->SetConnectionState(state, error);
|
| }
|
|
|
| -void PepperViewProxy::UpdateLoginStatus(bool success, const std::string& info) {
|
| - if (instance_ && !plugin_message_loop_->BelongsToCurrentThread()) {
|
| - plugin_message_loop_->PostTask(FROM_HERE, NewRunnableMethod(
|
| - this, &PepperViewProxy::UpdateLoginStatus, success, info));
|
| - return;
|
| - }
|
| -
|
| - if (view_)
|
| - view_->UpdateLoginStatus(success, info);
|
| -}
|
| -
|
| double PepperViewProxy::GetHorizontalScaleRatio() const {
|
| // This method returns a value, so must run synchronously, so must be
|
| // called only on the pepper thread.
|
|
|