Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | |
| 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 CHROME_BROWSER_UI_COCOA_CIRCULAR_ACTIVITY_INDICATOR_VIEW_H_ | |
| 6 #define CHROME_BROWSER_UI_COCOA_CIRCULAR_ACTIVITY_INDICATOR_VIEW_H_ | |
| 7 | |
| 8 #import <Cocoa/Cocoa.h> | |
| 9 | |
| 10 #include "base/mac/scoped_nsobject.h" | |
| 11 | |
| 12 @class CAAnimationGroup; | |
| 13 @class CAShapeLayer; | |
| 14 | |
| 15 @interface CircularActivityIndicatorView : NSView { | |
| 16 bool is_animating_; | |
|
groby-ooo-7-16
2015/03/31 23:07:01
nit: Mark @private, please.
shrike
2015/04/01 15:30:45
Done.
| |
| 17 } | |
| 18 | |
| 19 @end | |
| 20 | |
| 21 #endif // CHROME_BROWSER_UI_COCOA_CIRCULAR_ACTIVITY_INDICATOR_VIEW_H_ | |
| OLD | NEW |