chromium/ui/views/mouse_watcher_view_host.cc

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

#include "ui/views/mouse_watcher_view_host.h"

#include "ui/display/screen.h"
#include "ui/views/view.h"
#include "ui/views/widget/widget.h"

namespace views {

MouseWatcherViewHost::MouseWatcherViewHost(const View* view,
                                           const gfx::Insets& hot_zone_insets)
    :{}

MouseWatcherViewHost::~MouseWatcherViewHost() = default;

bool MouseWatcherViewHost::Contains(const gfx::Point& screen_point,
                                    EventType type) {}

// Returns whether or not the cursor is currently in the view's "zone" which
// is defined as a slightly larger region than the view.
bool MouseWatcherViewHost::IsCursorInViewZone(const gfx::Point& screen_point) {}

// Returns true if the mouse is over the view's window.
bool MouseWatcherViewHost::IsMouseOverWindow() {}

}  // namespace views