Index: content/browser/android/devtools_auth.cc |
diff --git a/content/browser/android/devtools_auth.cc b/content/browser/android/devtools_auth.cc |
deleted file mode 100644 |
index c89cdc0cbf16de9a767330d30e4b3f2198599de6..0000000000000000000000000000000000000000 |
--- a/content/browser/android/devtools_auth.cc |
+++ /dev/null |
@@ -1,26 +0,0 @@ |
-// Copyright (c) 2012 The Chromium Authors. All rights reserved. |
-// Use of this source code is governed by a BSD-style license that can be |
-// found in the LICENSE file. |
- |
-#include "content/public/browser/android/devtools_auth.h" |
- |
-#include "base/logging.h" |
- |
-namespace content { |
- |
-bool CanUserConnectToDevTools(uid_t uid, gid_t gid) { |
- struct passwd* creds = getpwuid(uid); |
- if (!creds || !creds->pw_name) { |
- LOG(WARNING) << "DevTools: can't obtain creds for uid " << uid; |
- return false; |
- } |
- if (gid == uid && |
- (strcmp("root", creds->pw_name) == 0 || // For rooted devices |
- strcmp("shell", creds->pw_name) == 0)) { // For non-rooted devices |
- return true; |
- } |
- LOG(WARNING) << "DevTools: connection attempt from " << creds->pw_name; |
- return false; |
-} |
- |
-} // namespace content |