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

Unified Diff: components/devtools_remote_frontend/devtools_auth_android.cc

Issue 17389005: [Android] Abandon bundling DevTools frontends for mobile apps (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased Created 7 years, 6 months 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
Index: components/devtools_remote_frontend/devtools_auth_android.cc
diff --git a/content/browser/android/devtools_auth.cc b/components/devtools_remote_frontend/devtools_auth_android.cc
similarity index 82%
rename from content/browser/android/devtools_auth.cc
rename to components/devtools_remote_frontend/devtools_auth_android.cc
index c89cdc0cbf16de9a767330d30e4b3f2198599de6..e648a11ca37423757e7073b2303e8d72f3392801 100644
--- a/content/browser/android/devtools_auth.cc
+++ b/components/devtools_remote_frontend/devtools_auth_android.cc
@@ -2,11 +2,11 @@
// 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 "components/devtools_remote_frontend/devtools_auth_android.h"
#include "base/logging.h"
-namespace content {
+namespace devtools_remote_frontend {
bool CanUserConnectToDevTools(uid_t uid, gid_t gid) {
struct passwd* creds = getpwuid(uid);
@@ -23,4 +23,4 @@ bool CanUserConnectToDevTools(uid_t uid, gid_t gid) {
return false;
}
-} // namespace content
+} // namespace devtools_remote_frontend

Powered by Google App Engine
This is Rietveld 408576698