Chromium Code Reviews| Index: base/mac/mac_util.h |
| diff --git a/base/mac/mac_util.h b/base/mac/mac_util.h |
| index d87aa8a07e61d7a0c90975de03383f0cf0608caf..e90360b2ee5463ec8c39ab41f33350a20c98ed04 100644 |
| --- a/base/mac/mac_util.h |
| +++ b/base/mac/mac_util.h |
| @@ -45,6 +45,9 @@ BASE_EXPORT CGColorSpaceRef GetGenericRGBColorSpace(); |
| // is a static value; do not release it! |
| BASE_EXPORT CGColorSpaceRef GetSystemColorSpace(); |
| +// Returns true if both CGFloat values are equal. |
| +BASE_EXPORT bool IsCGFloatEqual(CGFloat a, CGFloat b); |
|
Robert Sesek
2016/10/19 18:49:21
Could this go in ui/base/cocoa instead?
spqchan
2016/10/19 19:28:41
Sure thing, I put it in appkit_utils.
|
| + |
| // Add a full screen request for the given |mode|. Must be paired with a |
| // ReleaseFullScreen() call for the same |mode|. This does not by itself create |
| // a fullscreen window; rather, it manages per-application state related to |