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

Unified Diff: sync/util/data_encryption_win.h

Issue 11421047: sync: Move data_encryption_win.h into syncer namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix unittests Created 8 years, 1 month 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: sync/util/data_encryption_win.h
diff --git a/sync/util/data_encryption_win.h b/sync/util/data_encryption_win.h
index 87732ba64a87f9312d8d11539d9e0590f67dcf07..5b7dc09f97c039b0de44aaf6e9dcb93da3024b2a 100644
--- a/sync/util/data_encryption_win.h
+++ b/sync/util/data_encryption_win.h
@@ -10,10 +10,11 @@
#include "base/basictypes.h"
-using std::string;
-using std::vector;
+namespace syncer {
-vector<uint8> EncryptData(const string& data);
-bool DecryptData(const vector<uint8>& in_data, string* out_data);
+std::vector<uint8> EncryptData(const std::string& data);
+bool DecryptData(const std::vector<uint8>& in_data, std::string* out_data);
+
+} // namespace syncer
#endif // SYNC_UTIL_DATA_ENCRYPTION_WIN_H_
« no previous file with comments | « chrome/browser/autofill/autofill_ie_toolbar_import_win_unittest.cc ('k') | sync/util/data_encryption_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698