(Auto)update libjingle 74857067-> 74860820
git-svn-id: http://webrtc.googlecode.com/svn/trunk@7084 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
parent
7e3bd3d7de
commit
af5fa95258
@ -64,6 +64,21 @@
|
||||
#include "webrtc/experiments.h"
|
||||
#include "webrtc/modules/remote_bitrate_estimator/include/remote_bitrate_estimator.h"
|
||||
|
||||
namespace {
|
||||
|
||||
template <class T>
|
||||
bool Changed(cricket::Settable<T> proposed,
|
||||
cricket::Settable<T> original) {
|
||||
return proposed.IsSet() && proposed != original;
|
||||
}
|
||||
|
||||
template <class T>
|
||||
bool Changed(cricket::Settable<T> proposed,
|
||||
cricket::Settable<T> original,
|
||||
T* value) {
|
||||
return proposed.Get(value) && proposed != original;
|
||||
}
|
||||
} // namespace
|
||||
|
||||
namespace cricket {
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user