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

Unified Diff: obsolete/breakpad/common/md5.h

Issue 10928195: First round of dead file removal (Closed) Base URL: https://github.com/samclegg/nativeclient-sdk.git@master
Patch Set: Created 8 years, 3 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 | « obsolete/breakpad/common/mac/testing/GTMSenTestCase.m ('k') | obsolete/breakpad/common/md5.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: obsolete/breakpad/common/md5.h
diff --git a/obsolete/breakpad/common/md5.h b/obsolete/breakpad/common/md5.h
deleted file mode 100644
index 1a767b139e3d13190d82190971095197a9c66dc0..0000000000000000000000000000000000000000
--- a/obsolete/breakpad/common/md5.h
+++ /dev/null
@@ -1,32 +0,0 @@
-// Copyright 2007 Google Inc. All Rights Reserved.
-// Author: liuli@google.com (Liu Li)
-#ifndef COMMON_MD5_H__
-#define COMMON_MD5_H__
-
-//#include <stdint.h>
-#include "dwarf/types.h"
-
-typedef uint32_t u32;
-typedef uint8_t u8;
-
-struct MD5Context {
- u32 buf[4];
- u32 bits[2];
- u8 in[64];
-};
-
-#ifdef __cplusplus
-extern "C" {
-#endif // __cplusplus
-
-void MD5Init(struct MD5Context *ctx);
-
-void MD5Update(struct MD5Context *ctx, unsigned char const *buf, unsigned len);
-
-void MD5Final(unsigned char digest[16], struct MD5Context *ctx);
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif // COMMON_MD5_H__
« no previous file with comments | « obsolete/breakpad/common/mac/testing/GTMSenTestCase.m ('k') | obsolete/breakpad/common/md5.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698