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

Unified Diff: remoting/host/self_access_verifier.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/host/host_mock_objects.h ('k') | remoting/proto/auth.proto » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « remoting/host/host_mock_objects.h ('k') | remoting/proto/auth.proto » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698