Upstream version 7.35.138.0
[platform/framework/web/crosswalk.git] / src / xwalk / application / browser / event_observer.cc
1 // Copyright (c) 2013 Intel Corporation. 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 "xwalk/application/browser/event_observer.h"
6
7 #include "xwalk/application/browser/application_event_manager.h"
8
9 namespace xwalk {
10 namespace application {
11
12 EventObserver::EventObserver(ApplicationEventManager* event_manager)
13   : event_manager_(event_manager) {
14 }
15
16 EventObserver::~EventObserver() {
17   event_manager_->DetachObserver(this);
18 }
19
20 }  // namespace application
21 }  // namespace xwalk