blob: ed0ea79148a78a571fcb0fc6c8568f23d7c1db65 [file] [log] [blame]
// Copyright 2014 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_UI_AUTOFILL_POPUP_CONSTANTS_H_
#define CHROME_BROWSER_UI_AUTOFILL_POPUP_CONSTANTS_H_
#include "build/build_config.h"
namespace autofill {
#if BUILDFLAG(IS_MAC) || BUILDFLAG(IS_ANDROID)
// TODO(crbug.com/41292313): Change this to pixels
const int kPopupBorderThickness = 1;
#else
// In views, the implementation takes care of the border itself.
const int kPopupBorderThickness = 0;
#endif
} // namespace autofill
#endif // CHROME_BROWSER_UI_AUTOFILL_POPUP_CONSTANTS_H_