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

Unified Diff: chrome/browser/ui/cocoa/autofill/autofill_notification_container.mm

Issue 23546007: [rAC, OSX] Namespaced constants. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Once more merge to HEAD Created 7 years, 3 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/autofill/autofill_notification_container.mm
diff --git a/chrome/browser/ui/cocoa/autofill/autofill_notification_container.mm b/chrome/browser/ui/cocoa/autofill/autofill_notification_container.mm
index fd31a8350a07a0e995371b673797b94d6e483236..a3e98568cf6b913ff0756dbb76377b3562f5b1d4 100644
--- a/chrome/browser/ui/cocoa/autofill/autofill_notification_container.mm
+++ b/chrome/browser/ui/cocoa/autofill/autofill_notification_container.mm
@@ -37,7 +37,7 @@
// If the first notification doesn't have an arrow, reserve empty space.
if (![[notificationControllers_ objectAtIndex:0] hasArrow])
- preferredSize.height += kArrowHeight;
+ preferredSize.height += autofill::kArrowHeight;
for (AutofillNotificationController* delegate in
notificationControllers_.get())
@@ -53,7 +53,7 @@
NSRect remaining = [[self view] bounds];
if (![[notificationControllers_ objectAtIndex:0] hasArrow])
- remaining.size.height -= kArrowHeight;
+ remaining.size.height -= autofill::kArrowHeight;
for (AutofillNotificationController* delegate in
notificationControllers_.get()) {

Powered by Google App Engine
This is Rietveld 408576698