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

Side by Side Diff: chrome/browser/guid.h

Issue 3800003: Moving GUID generation from base to chrome/browser/guid* (Closed)
Patch Set: Additional comment. Created 10 years, 2 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 unified diff | Download patch
« no previous file with comments | « base/rand_util_win.cc ('k') | chrome/browser/guid_posix.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CHROME_BROWSER_GUID_H_
6 #define CHROME_BROWSER_GUID_H_
7 #pragma once
8
9 #include <string>
10
11 #include "base/basictypes.h"
12 #include "build/build_config.h"
13
14 namespace guid {
15
16 // Generate a 128-bit random GUID of the form: "%08X-%04X-%04X-%04X-%012llX".
17 // If GUID generation fails an empty string is returned.
18 // The POSIX implementation uses psuedo random number generation to create
19 // the GUID. The Windows implementation uses system services.
20 std::string GenerateGUID();
21
22 #if defined(OS_POSIX)
23 // For unit testing purposes only. Do not use outside of tests.
24 std::string RandomDataToGUIDString(const uint64 bytes[2]);
25 #endif
26
27 } // namespace guid
28
29 #endif // CHROME_BROWSER_GUID_H_
OLDNEW
« no previous file with comments | « base/rand_util_win.cc ('k') | chrome/browser/guid_posix.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698