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

Unified Diff: chrome/browser/ui/autofill/autofill_popup_controller_impl.cc

Issue 29303007: android: Enable -Wunused-const-variable. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 7 years, 2 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/autofill/autofill_popup_controller_impl.cc
diff --git a/chrome/browser/ui/autofill/autofill_popup_controller_impl.cc b/chrome/browser/ui/autofill/autofill_popup_controller_impl.cc
index 3599ca469b838ee9fd1ff57c3acb469ee3d4bdd2..c7c1751dc4710aa07d1fa64ee5fc4c86cc45c675 100644
--- a/chrome/browser/ui/autofill/autofill_popup_controller_impl.cc
+++ b/chrome/browser/ui/autofill/autofill_popup_controller_impl.cc
@@ -30,9 +30,6 @@ namespace {
// Used to indicate that no line is currently selected by the user.
const int kNoSelection = -1;
-// Size difference between name and subtext in pixels.
-const int kLabelFontSizeDelta = -2;
-
// The vertical height of each row in pixels.
const size_t kRowHeight = 24;
@@ -40,6 +37,9 @@ const size_t kRowHeight = 24;
const size_t kSeparatorHeight = 1;
#if !defined(OS_ANDROID)
+// Size difference between name and subtext in pixels.
+const int kLabelFontSizeDelta = -2;
+
const size_t kNamePadding = AutofillPopupView::kNamePadding;
const size_t kIconPadding = AutofillPopupView::kIconPadding;
const size_t kEndPadding = AutofillPopupView::kEndPadding;

Powered by Google App Engine
This is Rietveld 408576698