| Index: chrome/browser/ui/cocoa/download/download_item_cell.h
|
| diff --git a/chrome/browser/ui/cocoa/download/download_item_cell.h b/chrome/browser/ui/cocoa/download/download_item_cell.h
|
| index c73f9c8e02becbfb3020310a0b606b6ca96b129d..9e019752717f37ec30c568922e132c4a366e5443 100644
|
| --- a/chrome/browser/ui/cocoa/download/download_item_cell.h
|
| +++ b/chrome/browser/ui/cocoa/download/download_item_cell.h
|
| @@ -30,23 +30,23 @@ enum DownloadItemMousePosition {
|
| // Track which part of the button the mouse is over
|
| DownloadItemMousePosition mousePosition_;
|
| int mouseInsideCount_;
|
| - scoped_nsobject<NSTrackingArea> trackingAreaButton_;
|
| - scoped_nsobject<NSTrackingArea> trackingAreaDropdown_;
|
| + base::scoped_nsobject<NSTrackingArea> trackingAreaButton_;
|
| + base::scoped_nsobject<NSTrackingArea> trackingAreaDropdown_;
|
|
|
| base::FilePath downloadPath_; // stored unelided
|
| NSString* secondaryTitle_;
|
| NSFont* secondaryFont_;
|
| int percentDone_;
|
| - scoped_nsobject<NSAnimation> completionAnimation_;
|
| + base::scoped_nsobject<NSAnimation> completionAnimation_;
|
|
|
| // In degrees, for downloads with no known total size.
|
| int indeterminateProgressAngle_;
|
| - scoped_nsobject<IndeterminateProgressTimer> indeterminateProgressTimer_;
|
| + base::scoped_nsobject<IndeterminateProgressTimer> indeterminateProgressTimer_;
|
|
|
| BOOL isStatusTextVisible_;
|
| CGFloat titleY_;
|
| CGFloat statusAlpha_;
|
| - scoped_nsobject<NSAnimation> toggleStatusVisibilityAnimation_;
|
| + base::scoped_nsobject<NSAnimation> toggleStatusVisibilityAnimation_;
|
|
|
| scoped_ptr<ui::ThemeProvider> themeProvider_;
|
| }
|
|
|