• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright 2013 The Chromium Authors
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 #ifndef BASE_IOS_BLOCK_TYPES_H_
6 #define BASE_IOS_BLOCK_TYPES_H_
7 
8 // A generic procedural block type that takes no arguments and returns nothing.
9 typedef void (^ProceduralBlock)(void);
10 
11 // A block that takes no arguments and returns a bool.
12 typedef bool (^ConditionBlock)(void);
13 
14 #endif  // BASE_IOS_BLOCK_TYPES_H_
15