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

Unified Diff: experimental/visual_studio_plugin/src/common/types.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
Index: experimental/visual_studio_plugin/src/common/types.h
diff --git a/experimental/visual_studio_plugin/src/common/types.h b/experimental/visual_studio_plugin/src/common/types.h
deleted file mode 100644
index 5c8a16796626f0e02e5499f97375e5b81a145296..0000000000000000000000000000000000000000
--- a/experimental/visual_studio_plugin/src/common/types.h
+++ /dev/null
@@ -1,46 +0,0 @@
-// Copyright (c) 2011 The Native Client Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-// This file contains some typedefs for basic types
-
-
-#ifndef _COMMON_TYPES_H__
-#define _COMMON_TYPES_H__
-
-#ifdef _WIN32
-#pragma warning(disable:4100)
-
-typedef signed char int8;
-typedef short int16;
-typedef int int32;
-typedef long long int64;
-
-typedef unsigned char uint8;
-typedef unsigned short uint16;
-typedef unsigned int uint32;
-typedef unsigned long long uint64;
-
-typedef signed char int8_t;
-typedef short int16_t;
-typedef int int32_t;
-typedef long long int64_t;
-
-typedef unsigned char uint8_t;
-typedef unsigned short uint16_t;
-typedef unsigned int uint32_t;
-typedef unsigned long long uint64_t;
-
-#define __PTRDIFF_TYPE__ long long
-#ifdef __PTRDIFF_TYPE__
-typedef __PTRDIFF_TYPE__ intptr;
-typedef unsigned __PTRDIFF_TYPE__ uintptr;
-#else
-#error "Can't find pointer-sized integral types."
-#endif
-
-#else
-#include <stdint.h>
-#endif
-
-#endif // _COMMON_TYPES_H__

Powered by Google App Engine
This is Rietveld 408576698