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

Unified Diff: remoting/tools/keygen.py

Issue 7046012: Basic OAuth2 support using the native app flow. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: last one Created 9 years, 7 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 | « no previous file | remoting/webapp/me2mom/background.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/tools/keygen.py
diff --git a/remoting/tools/keygen.py b/remoting/tools/keygen.py
index bdc488c024e2d4e3d90f8a8f01d53fd7838b15f9..d650913e2a7202be7226fccc465a4c69c70177fc 100644
--- a/remoting/tools/keygen.py
+++ b/remoting/tools/keygen.py
@@ -10,14 +10,14 @@ if SCRIPT_PATH == "":
SCRIPT_PATH = os.getcwd()
PATHS_TO_TRY = [
- '\\..\\..\\build\\Debug\\chromoting_host_keygen.exe',
- '\\..\\..\\build\\Release\\chromoting_host_keygen.exe',
- '\\..\\Debug\\chromoting_host_keygen.exe',
- '\\..\\Release\\chromoting_host_keygen.exe',
- '/../../xcodebuild/Debug/chromoting_host_keygen',
- '/../../xcodebuild/Release/chromoting_host_keygen',
- '/../../out/Debug/chromoting_host_keygen',
- '/../../out/Release/chromoting_host_keygen']
+ '\\..\\..\\build\\Debug\\remoting_host_keygen.exe',
+ '\\..\\..\\build\\Release\\remoting_host_keygen.exe',
+ '\\..\\Debug\\remoting_host_keygen.exe',
+ '\\..\\Release\\remoting_host_keygen.exe',
+ '/../../xcodebuild/Debug/remoting_host_keygen',
+ '/../../xcodebuild/Release/remoting_host_keygen',
+ '/../../out/Debug/remoting_host_keygen',
+ '/../../out/Release/remoting_host_keygen']
KEYGEN_PATH = None
for path in PATHS_TO_TRY:
@@ -26,7 +26,7 @@ for path in PATHS_TO_TRY:
break
if not KEYGEN_PATH:
- raise Exception("Unable to find chromoting_host_keygen. Please build it " +
+ raise Exception("Unable to find remoting_host_keygen. Please build it " +
"and try again")
def generateRSAKeyPair():
@@ -35,5 +35,5 @@ def generateRSAKeyPair():
pipe = os.popen(KEYGEN_PATH)
out = pipe.readlines()
if len(out) != 2:
- raise Exception("chromoting_host_keygen failed.")
+ raise Exception("remoting_host_keygen failed.")
return (out[0].strip(), out[1].strip())
« no previous file with comments | « no previous file | remoting/webapp/me2mom/background.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698