| 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)
|
|
|