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

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

Issue 2963273002: Update includes for webrtc/{base => rtc_base} rename (3/3) (Closed)
Patch Set: git cl format Created 3 years, 5 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
« no previous file with comments | « no previous file | webrtc/rtc_base/array_view_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
11 #ifndef WEBRTC_RTC_BASE_ARRAY_VIEW_H_ 11 #ifndef WEBRTC_RTC_BASE_ARRAY_VIEW_H_
12 #define WEBRTC_RTC_BASE_ARRAY_VIEW_H_ 12 #define WEBRTC_RTC_BASE_ARRAY_VIEW_H_
13 13
14 #include "webrtc/base/checks.h" 14 #include "webrtc/rtc_base/checks.h"
15 #include "webrtc/base/type_traits.h" 15 #include "webrtc/rtc_base/type_traits.h"
16 16
17 namespace rtc { 17 namespace rtc {
18 18
19 // Many functions read from or write to arrays. The obvious way to do this is 19 // Many functions read from or write to arrays. The obvious way to do this is
20 // to use two arguments, a pointer to the first element and an element count: 20 // to use two arguments, a pointer to the first element and an element count:
21 // 21 //
22 // bool Contains17(const int* arr, size_t size) { 22 // bool Contains17(const int* arr, size_t size) {
23 // for (size_t i = 0; i < size; ++i) { 23 // for (size_t i = 0; i < size; ++i) {
24 // if (arr[i] == 17) 24 // if (arr[i] == 17)
25 // return true; 25 // return true;
(...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after
244 static_assert(std::is_empty<ArrayView<int, 0>>::value, ""); 244 static_assert(std::is_empty<ArrayView<int, 0>>::value, "");
245 245
246 template <typename T> 246 template <typename T>
247 inline ArrayView<T> MakeArrayView(T* data, size_t size) { 247 inline ArrayView<T> MakeArrayView(T* data, size_t size) {
248 return ArrayView<T>(data, size); 248 return ArrayView<T>(data, size);
249 } 249 }
250 250
251 } // namespace rtc 251 } // namespace rtc
252 252
253 #endif // WEBRTC_RTC_BASE_ARRAY_VIEW_H_ 253 #endif // WEBRTC_RTC_BASE_ARRAY_VIEW_H_
OLDNEW
« no previous file with comments | « no previous file | webrtc/rtc_base/array_view_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698