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

Side by Side Diff: webrtc/base/array_view.h

Issue 2293893002: Add functions to interact with ASan and MSan, and some sample uses (Closed)
Patch Set: Created 4 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright 2015 The WebRTC Project Authors. All rights reserved. 2 * Copyright 2015 The WebRTC Project Authors. All rights reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source 5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
123 return !(a == b); 123 return !(a == b);
124 } 124 }
125 125
126 private: 126 private:
127 // Invariant: !data_ iff size_ == 0. 127 // Invariant: !data_ iff size_ == 0.
128 void CheckInvariant() const { RTC_DCHECK_EQ(!data_, size_ == 0); } 128 void CheckInvariant() const { RTC_DCHECK_EQ(!data_, size_ == 0); }
129 T* data_; 129 T* data_;
130 size_t size_; 130 size_t size_;
131 }; 131 };
132 132
133 template <typename T>
134 inline ArrayView<T> MakeArrayView(T* data, size_t size) {
135 return ArrayView<T>(data, size);
136 }
137
133 } // namespace rtc 138 } // namespace rtc
134 139
135 #endif // WEBRTC_BASE_ARRAY_VIEW_H_ 140 #endif // WEBRTC_BASE_ARRAY_VIEW_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698