blob: 39c033862fc04d0b529d39f4c733a34a8a1b17c5 [file] [log] [blame]
// 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_