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

Unified Diff: chrome/browser/ui/cocoa/run_loop_testing.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/run_loop_testing.mm
diff --git a/chrome/browser/ui/cocoa/run_loop_testing.mm b/chrome/browser/ui/cocoa/run_loop_testing.mm
index b85722a460c2790630f87655c99b5f818cec2c93..9918c90a4ccd4081b69a6558bb1f9989259463c0 100644
--- a/chrome/browser/ui/cocoa/run_loop_testing.mm
+++ b/chrome/browser/ui/cocoa/run_loop_testing.mm
@@ -6,7 +6,7 @@
#import <Foundation/Foundation.h>
-#include "base/memory/scoped_nsobject.h"
+#include "base/mac/scoped_nsobject.h"
#include "base/message_loop/message_pump_mac.h"
// This class is scheduled with a delayed selector to quit the message pump.
@@ -42,7 +42,7 @@ void NSRunLoopRunAllPending() {
// Put a delayed selector on the queue. All other pending delayed selectors
// will run before this, after which the internal loop can end.
- scoped_nsobject<CocoaQuitTask> quit_task(
+ base::scoped_nsobject<CocoaQuitTask> quit_task(
[[CocoaQuitTask alloc] initWithMessagePump:message_pump]);
[quit_task performSelector:@selector(doQuit)

Powered by Google App Engine
This is Rietveld 408576698