1 // Copyright (c) 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_SCREENSHOT_TESTING_LOGIN_SCREEN_AREAS_H_
6 #define CHROME_BROWSER_CHROMEOS_LOGIN_SCREENSHOT_TESTING_LOGIN_SCREEN_AREAS_H_
8 #include "third_party/skia/include/core/SkBitmap.h"
9 #include "third_party/skia/include/core/SkRect.h"
15 // Part of the screen with clock (when there are two digits in hours).
16 const SkIRect kClockArea
= SkIRect::MakeLTRB(1260, 727, 1362 + 1, 758 + 1);
18 // First usedrpod, chosen as main, when we've got two users.
19 const SkIRect kFirstUserpod
= SkIRect::MakeLTRB(493, 262, 652 + 1, 421 + 1);
21 // Second userpod when we've got two users.
22 const SkIRect kSecondUserpod
= SkIRect::MakeLTRB(721, 271, 864 + 1, 415 + 1);
26 } // namespace chromeos
28 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_SCREENSHOT_TESTING_LOGIN_SCREEN_AREAS_H_