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

Unified Diff: chrome/browser/ui/cocoa/location_bar/action_box_menu_bubble_controller_unittest.mm

Issue 18346006: Update OS X to use scoped_refptr<T>::get() rather than implicit "operator T*" (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased 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/location_bar/action_box_menu_bubble_controller_unittest.mm
diff --git a/chrome/browser/ui/cocoa/location_bar/action_box_menu_bubble_controller_unittest.mm b/chrome/browser/ui/cocoa/location_bar/action_box_menu_bubble_controller_unittest.mm
index 7139ed63110765a0c25822698dec7bbc5f8145f6..7399ac587cb77011fc83e0c59f908a6c05b6de91 100644
--- a/chrome/browser/ui/cocoa/location_bar/action_box_menu_bubble_controller_unittest.mm
+++ b/chrome/browser/ui/cocoa/location_bar/action_box_menu_bubble_controller_unittest.mm
@@ -87,8 +87,8 @@ class ActionBoxMenuBubbleControllerTest : public CocoaProfileTest {
.Set("background", extensions::DictionaryBuilder()
.Set("page", ""))))
.Build();
- service_->AddExtension(extension);
- model->AddExtension(*extension, command_id);
+ service_->AddExtension(extension.get());
+ model->AddExtension(*extension.get(), command_id);
return extension;
}
« no previous file with comments | « chrome/browser/ui/cocoa/fullscreen_exit_bubble_controller_unittest.mm ('k') | chrome/browser/ui/cocoa/run_loop_testing.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698