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

Unified Diff: remoting/client/plugin/pepper_view_proxy.cc

Issue 8351084: Remove old Authentication code that we don't use or need. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: - Created 9 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 | « remoting/client/plugin/pepper_view_proxy.h ('k') | remoting/host/chromoting_host.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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.
« no previous file with comments | « remoting/client/plugin/pepper_view_proxy.h ('k') | remoting/host/chromoting_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698