blob: 21e1996a1ea7c3094cc98aad2a8cb4506a156a89 [file] [log] [blame]
// Copyright (c) 2015 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 CONTENT_BROWSER_MEDIA_CAPTURE_CURSOR_RENDERER_AURA_H_
#define CONTENT_BROWSER_MEDIA_CAPTURE_CURSOR_RENDERER_AURA_H_
#include "content/browser/media/capture/cursor_renderer.h"
#include "ui/aura/window.h"
#include "ui/events/event_handler.h"
namespace content {
class CONTENT_EXPORT CursorRendererAura : public CursorRenderer,
public ui::EventHandler,
public aura::WindowObserver {
public:
explicit CursorRendererAura(aura::Window* window,
CursorDisplaySetting cursor_display);
~CursorRendererAura() final;
// CursorRender implementation.
bool IsCapturedViewActive() final;
gfx::Size GetCapturedViewSize() final;
gfx::Point GetCursorPositionInView() final;
gfx::NativeCursor GetLastKnownCursor() final;
SkBitmap GetLastKnownCursorImage(gfx::Point* hot_point) final;
// ui::EventHandler overrides.
void OnMouseEvent(ui::MouseEvent* event) final;
// aura::WindowObserver overrides.
void OnWindowDestroying(aura::Window* window) final;
private:
aura::Window* window_;
DISALLOW_COPY_AND_ASSIGN(CursorRendererAura);
};
} // namespace content
#endif // CONTENT_BROWSER_MEDIA_CAPTURE_CURSOR_RENDERER_AURA_H_