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

Unified Diff: chrome/browser/ui/cocoa/toolbar/wrench_toolbar_button_cell_unittest.mm

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/toolbar/wrench_toolbar_button_cell_unittest.mm
diff --git a/chrome/browser/ui/cocoa/toolbar/wrench_toolbar_button_cell_unittest.mm b/chrome/browser/ui/cocoa/toolbar/wrench_toolbar_button_cell_unittest.mm
index 79ee86562cfa474282b0f4f9624049584e5a319b..416a5008280a0503de5430667961d35bd6abea12 100644
--- a/chrome/browser/ui/cocoa/toolbar/wrench_toolbar_button_cell_unittest.mm
+++ b/chrome/browser/ui/cocoa/toolbar/wrench_toolbar_button_cell_unittest.mm
@@ -21,14 +21,14 @@
class WrenchToolbarButtonCellTest : public CocoaTest {
protected:
WrenchToolbarButtonCellTest() {
- scoped_nsobject<NSButton> button([[TestWrenchToolbarButton alloc]
+ base::scoped_nsobject<NSButton> button([[TestWrenchToolbarButton alloc]
initWithFrame:NSMakeRect(0, 0, 29, 29)]);
button_ = button;
[[test_window() contentView] addSubview:button_];
}
NSButton* button_;
- scoped_nsobject<WrenchToolbarButtonCell> cell_;
+ base::scoped_nsobject<WrenchToolbarButtonCell> cell_;
base::MessageLoopForUI message_loop_; // Needed for ui::Animation.
private:

Powered by Google App Engine
This is Rietveld 408576698