Index: remoting/host/self_access_verifier.cc |
diff --git a/remoting/host/self_access_verifier.cc b/remoting/host/self_access_verifier.cc |
index a4564ea0be9ab187dca199893170f9e80277f489..939ed4dd31bc41bbab3993f99daf0da76d7e5046 100644 |
--- a/remoting/host/self_access_verifier.cc |
+++ b/remoting/host/self_access_verifier.cc |
@@ -7,7 +7,6 @@ |
#include "base/logging.h" |
#include "base/string_util.h" |
#include "remoting/host/host_config.h" |
-#include "remoting/proto/auth.pb.h" |
namespace remoting { |
@@ -51,23 +50,9 @@ bool SelfAccessVerifier::VerifyPermissions( |
return false; |
} |
- // Decode the auth token. |
- protocol::ClientAuthToken client_token; |
- if (!DecodeClientAuthToken(encoded_access_token, &client_token)) { |
- return false; |
- } |
- |
// Kick off directory access permissions. |
// TODO(ajwong): Actually implement this. |
return true; |
} |
-bool SelfAccessVerifier::DecodeClientAuthToken( |
- const std::string& encoded_client_token, |
- protocol::ClientAuthToken* client_token) { |
- // TODO(ajwong): Implement this. |
- NOTIMPLEMENTED(); |
- return true; |
-} |
- |
} // namespace remoting |