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

Unified Diff: content/public/browser/android/devtools_auth.h

Issue 10832112: Simplify devtools code on android and enable devtools for android content_shell. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address Pavel's comments Created 8 years, 4 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: content/public/browser/android/devtools_auth.h
diff --git a/content/public/browser/android/devtools_auth.h b/content/public/browser/android/devtools_auth.h
new file mode 100644
index 0000000000000000000000000000000000000000..700892c034a00a8b3e15637e02cbdfb54a548b87
--- /dev/null
+++ b/content/public/browser/android/devtools_auth.h
@@ -0,0 +1,20 @@
+// 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.
+
+#ifndef CONTENT_PUBLIC_BROWSER_DEVTOOLS_AUTH_ANDROID_H_
+#define CONTENT_PUBLIC_BROWSER_DEVTOOLS_AUTH_ANDROID_H_
+
+#include "content/common/content_export.h"
+
+#include <pwd.h>
+
+namespace content {
+
+// Returns true if the given user/group pair is authorized to connect to the
+// devtools server, false if not.
+CONTENT_EXPORT bool CanUserConnectToDevTools(uid_t uid, gid_t gid);
+
+} // namespace content
+
+#endif // CONTENT_PUBLIC_BROWSER_DEVTOOLS_AUTH_ANDROID_H_

Powered by Google App Engine
This is Rietveld 408576698