Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5479)

Unified Diff: chrome/browser/ui/cocoa/download/download_item_cell.h

Issue 17593006: mac: Update clients of scoped_nsobject.h. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: iwyu, scoped_nsprotocol Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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_;
}

Powered by Google App Engine
This is Rietveld 408576698