blob: 65f79259a83e04915e18673e438b5aac70c055cb [file] [log] [blame]
// Copyright 2019 The Chromium Authors. All rights reserved.
// 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_