blob: 1bf28753bf949e6bf540afc1293475cfdc472a3f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
// Copyright 2014 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.
#include "athena/home/home_card_constants.h"
namespace athena {
const int kHomeCardHeight = 100;
const int kHomeCardDragIndicatorHeight = 2;
const int kHomeCardDragIndicatorWidth = 48;
const int kHomeCardDragIndicatorMarginHeight = 7;
const int kHomeCardMinimizedHeight =
kHomeCardDragIndicatorMarginHeight * 2 + kHomeCardDragIndicatorHeight;
const int kSystemUIHeight = 24;
const int kHomeCardSearchBoxId = 1000;
} // namespace athena
|