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

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

Issue 1813763005: Updated structures and functions for setting the max bitrate limit to take rtc::Optional<int> Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 9 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
(Empty)
1 /*
2 * Copyright 2015 The WebRTC Project Authors. All rights reserved.
3 *
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
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 */
10
11 #ifndef WEBRTC_BASE_OPTIONAL_IOS_H_
12 #define WEBRTC_BASE_OPTIONAL_IOS_H_
13
14 #include <ostream>
15 #include "webrtc/base/optional.h"
16
17 namespace rtc {
18
19 // Contains function definitions to allow writing rtc::Optional<T> to ostreams.
20 // Allows for simpler logging of rtc::Optional<T> values.
21
22 template <typename T>
23 std::ostream& operator<<(std::ostream& stream, rtc::Optional<T> value) {
24 if (value) {
25 stream << *value;
26 } else {
27 stream << "<not set>";
28 }
29 return stream;
30 }
pthatcher1 2016/03/17 21:51:28 Can we put this in optional.h? Is the dependency
skvlad 2016/03/18 00:49:17 Ok - moved it to optional.h. The ostream dependenc
31
32 } // namespace rtc
33
34 #endif // WEBRTC_BASE_OPTIONAL_IOS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698