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

Unified Diff: base/basictypes.h

Issue 1550063002: Remove base/basictypes.h. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@int-base
Patch Set: Created 5 years 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: base/basictypes.h
diff --git a/base/basictypes.h b/base/basictypes.h
deleted file mode 100644
index eba97533c976c4beea60880a57dd08ec570515ad..0000000000000000000000000000000000000000
--- a/base/basictypes.h
+++ /dev/null
@@ -1,26 +0,0 @@
-// Copyright 2013 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef BASE_BASICTYPES_H_
-#define BASE_BASICTYPES_H_
-
-#include <limits.h> // So we can set the bounds of our types.
-#include <stddef.h> // For size_t.
-#include <stdint.h> // For intptr_t.
-
-#include "base/macros.h"
-#include "build/build_config.h"
-
-// DEPRECATED: Use (u)int{8,16,32,64}_t instead (and include <stdint.h>).
-// http://crbug.com/138542
-typedef int8_t int8;
-typedef uint8_t uint8;
-typedef int16_t int16;
-typedef uint16_t uint16;
-typedef int32_t int32;
-typedef uint32_t uint32;
-typedef int64_t int64;
-typedef uint64_t uint64;
-
-#endif // BASE_BASICTYPES_H_
« base/allocator/BUILD.gn ('K') | « base/base.gypi ('k') | base/callback_list_unittest.nc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698