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

Unified Diff: ui/app_list/cocoa/app_list_view_controller.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: ui/app_list/cocoa/app_list_view_controller.mm
diff --git a/ui/app_list/cocoa/app_list_view_controller.mm b/ui/app_list/cocoa/app_list_view_controller.mm
index 330c80d6495c1fe10eeebf7542950b7ec4b439c2..7ef6bbae95a18a1639763521ddfa60a02d5f84cb 100644
--- a/ui/app_list/cocoa/app_list_view_controller.mm
+++ b/ui/app_list/cocoa/app_list_view_controller.mm
@@ -141,9 +141,9 @@ const NSTimeInterval kResultsAnimationDuration = 0.2;
[AppsGridController scrollerPadding]);
contentsView_.reset([[FlippedView alloc] initWithFrame:contentsRect]);
- scoped_nsobject<BackgroundView> backgroundView(
+ base::scoped_nsobject<BackgroundView> backgroundView(
[[BackgroundView alloc] initWithFrame:
- NSMakeRect(0, 0, NSMaxX(contentsRect), NSMaxY(contentsRect))]);
+ NSMakeRect(0, 0, NSMaxX(contentsRect), NSMaxY(contentsRect))]);
appsSearchBoxController_.reset(
[[AppsSearchBoxController alloc] initWithFrame:
NSMakeRect(0, 0, NSWidth(contentsRect), kSearchInputHeight)]);

Powered by Google App Engine
This is Rietveld 408576698