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

Unified Diff: chrome/browser/devtools/adb/android_rsa.h

Issue 18137007: DevTools: add about:flag for ADB-less remote debugging. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: For landing Created 7 years, 5 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
« no previous file with comments | « chrome/browser/about_flags.cc ('k') | chrome/browser/devtools/adb/android_rsa.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/devtools/adb/android_rsa.h
diff --git a/chrome/browser/devtools/adb/android_rsa.h b/chrome/browser/devtools/adb/android_rsa.h
index 1d8aec8bab5393306df2885623a1969e74ade745..d413228497a1b2d5457239ef22396da817ab0170 100644
--- a/chrome/browser/devtools/adb/android_rsa.h
+++ b/chrome/browser/devtools/adb/android_rsa.h
@@ -1,4 +1,4 @@
-// Copyright 2013 The Chromium Authors. All rights reserved.
+// Copyright (c) 2013 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.
@@ -7,10 +7,17 @@
#include <string>
+namespace crypto {
+class RSAPrivateKey;
+}
+
class Profile;
-std::string AndroidRSAPublicKey(Profile* profile);
+crypto::RSAPrivateKey* AndroidRSAPrivateKey(Profile* profile);
+
+std::string AndroidRSAPublicKey(crypto::RSAPrivateKey* key);
-std::string AndroidRSASign(Profile* profile, const std::string& body);
+std::string AndroidRSASign(crypto::RSAPrivateKey* key,
+ const std::string& body);
#endif // CHROME_BROWSER_DEVTOOLS_ADB_ANDROID_RSA_H_
« no previous file with comments | « chrome/browser/about_flags.cc ('k') | chrome/browser/devtools/adb/android_rsa.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698