summaryrefslogtreecommitdiff
path: root/chromium/ash/launcher/launcher_types.cc
blob: a6080b0b66606ee93bc5777d7175039bf9b6b03d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Copyright (c) 2012 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 "ash/launcher/launcher_types.h"

namespace ash {

const int kLauncherPreferredSize = 48;
const int kLauncherBackgroundAlpha = 204;

LauncherItem::LauncherItem()
    : type(TYPE_TABBED),
      is_incognito(false),
      id(0),
      status(STATUS_CLOSED) {
}

LauncherItem::~LauncherItem() {
}

}  // namespace ash