Upstream version 11.39.256.0
[platform/framework/web/crosswalk.git] / src / xwalk / runtime / common / xwalk_notification_types.h
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 #ifndef XWALK_RUNTIME_COMMON_XWALK_NOTIFICATION_TYPES_H_
6 #define XWALK_RUNTIME_COMMON_XWALK_NOTIFICATION_TYPES_H_
7
8 #include "build/build_config.h"
9 #include "content/public/browser/notification_types.h"
10
11 namespace xwalk {
12
13 enum NotificationType {
14   NOTIFICATION_XWALK_START = content::NOTIFICATION_CONTENT_END,
15
16   // Notify that fullscreen state of a NativeAppWindow is changed.
17   NOTIFICATION_FULLSCREEN_CHANGED = NOTIFICATION_XWALK_START,
18
19   NOTIFICATION_XWALK_END,
20 };
21
22 }  // namespace xwalk
23
24 #endif  // XWALK_RUNTIME_COMMON_XWALK_NOTIFICATION_TYPES_H_