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

Unified Diff: remoting/tools/uuidgen.py

Issue 10837087: [Chromoting] Auto-generate CLSID of the daemon controller at GYP time. This makes sure that a fresh… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased 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
« no previous file with comments | « remoting/tools/candle_and_light.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/tools/uuidgen.py
diff --git a/tools/isolate/data/isolate/fail.py b/remoting/tools/uuidgen.py
similarity index 74%
copy from tools/isolate/data/isolate/fail.py
copy to remoting/tools/uuidgen.py
index a82098ac9697f9dc9f1fe78a21039a0dca799e17..ed1e415ec327013ebc8893f6055edf77f93bccfd 100755
--- a/tools/isolate/data/isolate/fail.py
+++ b/remoting/tools/uuidgen.py
@@ -3,13 +3,16 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
-import sys
+"""
+uuidgen.py -- UUID generation utility.
+"""
+import sys
+import uuid
def main():
- print 'Failing'
- return 1
-
+ print uuid.uuid4()
+ return 0
if __name__ == '__main__':
sys.exit(main())
« no previous file with comments | « remoting/tools/candle_and_light.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698