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

Side by Side Diff: Source/platform/CheckedInt.h

Issue 55833005: Move CheckedInt.h to Source/platform (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 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 unified diff | Download patch
OLDNEW
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ 1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* This Source Code Form is subject to the terms of the Mozilla Public 2 /* This Source Code Form is subject to the terms of the Mozilla Public
3 * License, v. 2.0. If a copy of the MPL was not distributed with this file, 3 * License, v. 2.0. If a copy of the MPL was not distributed with this file,
4 * You can obtain one at http://mozilla.org/MPL/2.0/. */ 4 * You can obtain one at http://mozilla.org/MPL/2.0/. */
5 5
6 /* Provides checked integers, detecting integer overflow and divide-by-0. */ 6 /* Provides checked integers, detecting integer overflow and divide-by-0. */
7 7
8 // Necessary modifications are made to the original CheckedInt.h file when 8 // Necessary modifications are made to the original CheckedInt.h file when
9 // incorporating it into WebKit: 9 // incorporating it into WebKit:
10 // 1) Comment out #define MOZ_CHECKEDINT_ENABLE_MOZ_ASSERTS 10 // 1) Comment out #define MOZ_CHECKEDINT_ENABLE_MOZ_ASSERTS
(...skipping 799 matching lines...) Expand 10 before | Expand all | Expand 10 after
810 typedef CheckedInt<int16_t> CheckedInt16; 810 typedef CheckedInt<int16_t> CheckedInt16;
811 typedef CheckedInt<uint16_t> CheckedUint16; 811 typedef CheckedInt<uint16_t> CheckedUint16;
812 typedef CheckedInt<int32_t> CheckedInt32; 812 typedef CheckedInt<int32_t> CheckedInt32;
813 typedef CheckedInt<uint32_t> CheckedUint32; 813 typedef CheckedInt<uint32_t> CheckedUint32;
814 typedef CheckedInt<int64_t> CheckedInt64; 814 typedef CheckedInt<int64_t> CheckedInt64;
815 typedef CheckedInt<uint64_t> CheckedUint64; 815 typedef CheckedInt<uint64_t> CheckedUint64;
816 816
817 } // namespace WebCore 817 } // namespace WebCore
818 818
819 #endif /* mozilla_CheckedInt_h_ */ 819 #endif /* mozilla_CheckedInt_h_ */
OLDNEW
« no previous file with comments | « Source/core/platform/graphics/GraphicsContext3DImagePacking.cpp ('k') | Source/platform/blink_platform.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698