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

Unified Diff: webrtc/base/arraysize.h

Issue 2877023002: Move webrtc/{base => rtc_base} (Closed)
Patch Set: update presubmit.py and DEPS include rules Created 3 years, 6 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 | « webrtc/base/array_view_unittest.cc ('k') | webrtc/base/asyncinvoker.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/base/arraysize.h
diff --git a/webrtc/base/arraysize.h b/webrtc/base/arraysize.h
index 56a10392afd8f864c30defbe10a8d5cb01724eda..8b37efa04b3464815300ac7f246d1ee579999c81 100644
--- a/webrtc/base/arraysize.h
+++ b/webrtc/base/arraysize.h
@@ -11,21 +11,9 @@
#ifndef WEBRTC_BASE_ARRAYSIZE_H_
#define WEBRTC_BASE_ARRAYSIZE_H_
-#include <stddef.h>
-// This file defines the arraysize() macro and is derived from Chromium's
-// base/macros.h.
-
-// The arraysize(arr) macro returns the # of elements in an array arr.
-// The expression is a compile-time constant, and therefore can be
-// used in defining new arrays, for example. If you use arraysize on
-// a pointer by mistake, you will get a compile-time error.
-
-// This template function declaration is used in defining arraysize.
-// Note that the function doesn't need an implementation, as we only
-// use its type.
-template <typename T, size_t N> char (&ArraySizeHelper(T (&array)[N]))[N];
-
-#define arraysize(array) (sizeof(ArraySizeHelper(array)))
+// This header is deprecated and is just left here temporarily during
+// refactoring. See https://bugs.webrtc.org/7634 for more details.
+#include "webrtc/rtc_base/arraysize.h"
#endif // WEBRTC_BASE_ARRAYSIZE_H_
« no previous file with comments | « webrtc/base/array_view_unittest.cc ('k') | webrtc/base/asyncinvoker.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698