blob: 3d6b50f3dbafa4dc01668d978548be53acc9511a [file] [log] [blame]
// Copyright 2021 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 CHROME_BROWSER_UI_VIEWS_JAVASCRIPT_APP_MODAL_EVENT_BLOCKER_H_
#define CHROME_BROWSER_UI_VIEWS_JAVASCRIPT_APP_MODAL_EVENT_BLOCKER_H_
#include "build/build_config.h"
#if defined(OS_MAC)
#include "chrome/browser/ui/views/javascript_app_modal_event_blocker_mac.h"
using JavascriptAppModalEventBlocker = JavascriptAppModalEventBlockerMac;
#else
#include "chrome/browser/ui/views/javascript_app_modal_event_blocker_aura.h"
using JavascriptAppModalEventBlocker = JavascriptAppModalEventBlockerAura;
#endif
#endif // CHROME_BROWSER_UI_VIEWS_JAVASCRIPT_APP_MODAL_EVENT_BLOCKER_H_