blob: b7867133f33481abf0ee08d76ecd8d6d0bb076ee [file] [log] [blame]
Anders Hartvoll Ruud88ac4162024-08-05 21:22:081// Copyright 2024 The Chromium Authors
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef COMPONENTS_LENS_LENS_CONSTANTS_H_
6#define COMPONENTS_LENS_LENS_CONSTANTS_H_
7
8namespace lens {
9
10// The max area for the image to be sent to Lens.
11inline constexpr int kMaxAreaForImageSearch = 1'000'000;
12
13// The max pixel width/height for the image to be sent to Lens.
14inline constexpr int kMaxPixelsForImageSearch = 1000;
15
16} // namespace lens
17
18#endif // COMPONENTS_LENS_LENS_CONSTANTS_H_