| Index: chrome/browser/ui/cocoa/info_bubble_view_unittest.mm
 | 
| diff --git a/chrome/browser/ui/cocoa/info_bubble_view_unittest.mm b/chrome/browser/ui/cocoa/info_bubble_view_unittest.mm
 | 
| index ff60da5a3235deeea2f208bd6e193443d2a8da62..82b135a55dc3565cc8c5522da69398f7b627e015 100644
 | 
| --- a/chrome/browser/ui/cocoa/info_bubble_view_unittest.mm
 | 
| +++ b/chrome/browser/ui/cocoa/info_bubble_view_unittest.mm
 | 
| @@ -2,9 +2,9 @@
 | 
|  // Use of this source code is governed by a BSD-style license that can be
 | 
|  // found in the LICENSE file.
 | 
|  
 | 
| -#include "base/memory/scoped_nsobject.h"
 | 
| -#import "chrome/browser/ui/cocoa/info_bubble_view.h"
 | 
| +#include "base/mac/scoped_nsobject.h"
 | 
|  #import "chrome/browser/ui/cocoa/cocoa_test_helper.h"
 | 
| +#import "chrome/browser/ui/cocoa/info_bubble_view.h"
 | 
|  
 | 
|  namespace {
 | 
|  
 | 
| @@ -12,7 +12,7 @@ class InfoBubbleViewTest : public CocoaTest {
 | 
|   public:
 | 
|    InfoBubbleViewTest() {
 | 
|      NSRect frame = NSMakeRect(0, 0, 100, 30);
 | 
| -    scoped_nsobject<InfoBubbleView> view(
 | 
| +    base::scoped_nsobject<InfoBubbleView> view(
 | 
|          [[InfoBubbleView alloc] initWithFrame:frame]);
 | 
|      view_ = view.get();
 | 
|      [[test_window() contentView] addSubview:view_];
 | 
| 
 |