Anders Hartvoll Ruud | 88ac416 | 2024-08-05 21:22:08 | [diff] [blame] | 1 | // 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 | |
| 8 | namespace lens { |
| 9 | |
| 10 | // The max area for the image to be sent to Lens. |
| 11 | inline constexpr int kMaxAreaForImageSearch = 1'000'000; |
| 12 | |
| 13 | // The max pixel width/height for the image to be sent to Lens. |
| 14 | inline constexpr int kMaxPixelsForImageSearch = 1000; |
| 15 | |
| 16 | } // namespace lens |
| 17 | |
| 18 | #endif // COMPONENTS_LENS_LENS_CONSTANTS_H_ |