blob: 83459ebb75c77639665890971204057874fc2e6b [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/676221): 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_