Upstream version 11.40.271.0
[platform/framework/web/crosswalk.git] / src / chrome / browser / chromeos / login / screenshot_testing / login_screen_areas.h
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.
4
5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_SCREENSHOT_TESTING_LOGIN_SCREEN_AREAS_H_
6 #define CHROME_BROWSER_CHROMEOS_LOGIN_SCREENSHOT_TESTING_LOGIN_SCREEN_AREAS_H_
7
8 #include "third_party/skia/include/core/SkBitmap.h"
9 #include "third_party/skia/include/core/SkRect.h"
10
11 namespace chromeos {
12
13 namespace areas {
14
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);
17
18 // First usedrpod, chosen as main, when we've got two users.
19 const SkIRect kFirstUserpod = SkIRect::MakeLTRB(493, 262, 652 + 1, 421 + 1);
20
21 // Second userpod when we've got two users.
22 const SkIRect kSecondUserpod = SkIRect::MakeLTRB(721, 271, 864 + 1, 415 + 1);
23
24 }  // namespace areas
25
26 }  // namespace chromeos
27
28 #endif  // CHROME_BROWSER_CHROMEOS_LOGIN_SCREENSHOT_TESTING_LOGIN_SCREEN_AREAS_H_