910e62b5创建于 1月15日历史提交
// Copyright 2019 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef UI_GFX_IMAGE_RESIZE_IMAGE_DIMENSIONS_H_
#define UI_GFX_IMAGE_RESIZE_IMAGE_DIMENSIONS_H_

namespace gfx {

// Dimensions to use when downsizing an image for search-by-image.
const int kSearchByImageMaxImageArea = 90000;
const int kSearchByImageMaxImageWidth = 600;
const int kSearchByImageMaxImageHeight = 400;

}  // namespace gfx

#endif  // UI_GFX_IMAGE_RESIZE_IMAGE_DIMENSIONS_H_