Change log:95336cb92b..191d55580eFull diff:95336cb92b..191d55580eRoll chromium third_party 4e16929f46..3a8f2a9e1e Change log:4e16929f46..3a8f2a9e1eChanged dependencies: * src/tools:c44a3f5eca..f524a53b81DEPS diff:95336cb92b..191d55580e/DEPS No update to Clang. TBR=titovartem@google.com, BUG=None CQ_INCLUDE_TRYBOTS=master.internal.tryserver.corp.webrtc:linux_internal Change-Id: Ic9c4a62b050383646e9fcf5cc07a5653c14ac06e Reviewed-on: https://webrtc-review.googlesource.com/76120 Reviewed-by: Patrik Höglund <phoglund@webrtc.org> Reviewed-by: Karl Wiberg <kwiberg@webrtc.org> Reviewed-by: Artem Titov <titovartem@webrtc.org> Commit-Queue: Artem Titov <titovartem@webrtc.org> Cr-Commit-Position: refs/heads/master@{#23205}
77 lines
2.0 KiB
Plaintext
77 lines
2.0 KiB
Plaintext
// Copyright (c) 2011 The Chromium Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#include <objc/runtime.h>
|
|
|
|
#include "third_party/ocmock/ocmock_extensions.h"
|
|
|
|
#define CR_OCMOCK_RETURN_IMPL(type_name, type) \
|
|
- (id)andReturn##type_name:(type)value { \
|
|
return [self andReturnValue:OCMOCK_VALUE(value)]; \
|
|
}
|
|
|
|
@implementation OCMStubRecorder(CrExtensions)
|
|
|
|
CR_OCMOCK_RETURN_IMPL(Char, char);
|
|
CR_OCMOCK_RETURN_IMPL(UnsignedChar, unsigned char);
|
|
CR_OCMOCK_RETURN_IMPL(Short, short);
|
|
CR_OCMOCK_RETURN_IMPL(UnsignedShort, unsigned short);
|
|
CR_OCMOCK_RETURN_IMPL(Int, int);
|
|
CR_OCMOCK_RETURN_IMPL(UnsignedInt, unsigned int);
|
|
CR_OCMOCK_RETURN_IMPL(Long, long);
|
|
CR_OCMOCK_RETURN_IMPL(UnsignedLong, unsigned long);
|
|
CR_OCMOCK_RETURN_IMPL(LongLong, long long);
|
|
CR_OCMOCK_RETURN_IMPL(UnsignedLongLong, unsigned long long);
|
|
CR_OCMOCK_RETURN_IMPL(Float, float);
|
|
CR_OCMOCK_RETURN_IMPL(Double, double);
|
|
CR_OCMOCK_RETURN_IMPL(Bool, BOOL);
|
|
CR_OCMOCK_RETURN_IMPL(Integer, NSInteger);
|
|
CR_OCMOCK_RETURN_IMPL(UnsignedInteger, NSUInteger);
|
|
|
|
#if !TARGET_OS_IPHONE
|
|
CR_OCMOCK_RETURN_IMPL(CGFloat, CGFloat);
|
|
|
|
- (id)andReturnNSRect:(NSRect)rect {
|
|
return [self andReturnValue:[NSValue valueWithRect:rect]];
|
|
}
|
|
|
|
- (id)andReturnCGRect:(CGRect)rect {
|
|
return [self andReturnNSRect:NSRectFromCGRect(rect)];
|
|
}
|
|
|
|
- (id)andReturnNSPoint:(NSPoint)point {
|
|
return [self andReturnValue:[NSValue valueWithPoint:point]];
|
|
}
|
|
|
|
- (id)andReturnCGPoint:(CGPoint)point {
|
|
return [self andReturnNSPoint:NSPointFromCGPoint(point)];
|
|
}
|
|
#endif // !TARGET_OS_IPHONE
|
|
|
|
@end
|
|
|
|
@implementation cr_OCMConformToProtocolConstraint
|
|
|
|
- (id)initWithProtocol:(Protocol*)protocol {
|
|
if (self == [super init]) {
|
|
protocol_ = protocol;
|
|
}
|
|
return self;
|
|
}
|
|
|
|
- (BOOL)evaluate:(id)value {
|
|
return protocol_conformsToProtocol(protocol_, value);
|
|
}
|
|
|
|
@end
|
|
|
|
@implementation OCMArg(CrExtensions)
|
|
|
|
+ (id)conformsToProtocol:(Protocol*)protocol {
|
|
return [[[cr_OCMConformToProtocolConstraint alloc] initWithProtocol:protocol]
|
|
autorelease];
|
|
}
|
|
|
|
@end
|