blob: 803a0a46a38a5fcade41099536d304bd5956e6c6 [file] [log] [blame]
Torne (Richard Coles)a1401312014-03-18 10:20:56 +00001// Copyright 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#include "ash/wm/wm_event.h"
6
7namespace ash {
8namespace wm {
9
10WMEvent::WMEvent(WMEventType type)
11 : type_(type) {
12}
13
14WMEvent::~WMEvent() {
15}
16
17SetBoundsEvent::SetBoundsEvent(WMEventType type, const gfx::Rect& bounds)
18 : WMEvent(type),
19 requested_bounds_(bounds) {
20}
21
22SetBoundsEvent::~SetBoundsEvent() {
23}
24
25} // namespace wm
26} // namespace ash