Fix omnibox logging for zero suggest.
[chromium-blink-merge.git] / third_party / ocmock / OCMock / OCMReturnValueProvider.h
blob3566c6ddb2dbac1d129717d6e51bf14794fbee46
1 //---------------------------------------------------------------------------------------
2 // $Id$
3 // Copyright (c) 2009 by Mulle Kybernetik. See License file for details.
4 //---------------------------------------------------------------------------------------
6 #import <Foundation/Foundation.h>
8 @interface OCMReturnValueProvider : NSObject
10 id returnValue;
13 - (id)initWithValue:(id)aValue;
15 - (void)handleInvocation:(NSInvocation *)anInvocation;
17 @end