summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/modules/app_banner/dom_window_installation.h
blob: 0a5a363167924c616deb63344add01a419e5dc9d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright 2017 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.

#ifndef THIRD_PARTY_BLINK_RENDERER_MODULES_APP_BANNER_DOM_WINDOW_INSTALLATION_H_
#define THIRD_PARTY_BLINK_RENDERER_MODULES_APP_BANNER_DOM_WINDOW_INSTALLATION_H_

#include "third_party/blink/renderer/core/dom/events/event_target.h"
#include "third_party/blink/renderer/core/event_type_names.h"

namespace blink {

class DOMWindowInstallation {
 public:
  DEFINE_STATIC_ATTRIBUTE_EVENT_LISTENER(appinstalled);
  DEFINE_STATIC_ATTRIBUTE_EVENT_LISTENER(beforeinstallprompt);
};

}  // namespace blink

#endif  // THIRD_PARTY_BLINK_RENDERER_MODULES_APP_BANNER_DOM_WINDOW_INSTALLATION_H_