chromium/chrome/browser/ui/views/javascript_app_modal_event_blocker_aura.cc

// Copyright 2014 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "chrome/browser/ui/views/javascript_app_modal_event_blocker.h"

#include "chrome/browser/ui/views/frame/browser_view.h"
#include "ui/aura/env.h"
#include "ui/aura/window.h"
#include "ui/events/event.h"
#include "ui/wm/core/window_animations.h"
#include "ui/wm/core/window_util.h"

namespace {

// Returns the toplevel window for the deepest transient ancestor of |window|.
aura::Window* GetTopmostTransientParent(aura::Window* window) {}

}  // namespace

JavascriptAppModalEventBlockerAura::JavascriptAppModalEventBlockerAura(
    aura::Window* modal_window)
    :{}

JavascriptAppModalEventBlockerAura::~JavascriptAppModalEventBlockerAura() {}

bool JavascriptAppModalEventBlockerAura::ShouldStopPropagationTo(
    ui::EventTarget* target) {}

void JavascriptAppModalEventBlockerAura::OnKeyEvent(ui::KeyEvent* event) {}

void JavascriptAppModalEventBlockerAura::OnMouseEvent(ui::MouseEvent* event) {}

void JavascriptAppModalEventBlockerAura::OnScrollEvent(ui::ScrollEvent* event) {}

void JavascriptAppModalEventBlockerAura::OnTouchEvent(ui::TouchEvent* event) {}