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

Unified Diff: chrome/browser/ui/cocoa/confirm_bubble_cocoa.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/confirm_bubble_cocoa.h
diff --git a/chrome/browser/ui/cocoa/confirm_bubble_cocoa.h b/chrome/browser/ui/cocoa/confirm_bubble_cocoa.h
index 8d2a3f3a69febd74f903cd99c10463000cc46bb2..c1971b0b797220a881f56ea44234eaa308b5eeb2 100644
--- a/chrome/browser/ui/cocoa/confirm_bubble_cocoa.h
+++ b/chrome/browser/ui/cocoa/confirm_bubble_cocoa.h
@@ -7,7 +7,7 @@
#import <Cocoa/Cocoa.h>
-#include "base/memory/scoped_nsobject.h"
+#include "base/mac/scoped_nsobject.h"
@class ConfirmBubbleController;
class ConfirmBubbleModel;
@@ -37,11 +37,11 @@ class ConfirmBubbleModel;
ConfirmBubbleController* controller_; // weak
// Controls used in this bubble.
- scoped_nsobject<NSImageView> icon_;
- scoped_nsobject<NSTextView> titleLabel_;
- scoped_nsobject<NSTextView> messageLabel_;
- scoped_nsobject<NSButton> okButton_;
- scoped_nsobject<NSButton> cancelButton_;
+ base::scoped_nsobject<NSImageView> icon_;
+ base::scoped_nsobject<NSTextView> titleLabel_;
+ base::scoped_nsobject<NSTextView> messageLabel_;
+ base::scoped_nsobject<NSButton> okButton_;
+ base::scoped_nsobject<NSButton> cancelButton_;
}
// Initializes a bubble view. Since this initializer programmatically creates a

Powered by Google App Engine
This is Rietveld 408576698