summaryrefslogtreecommitdiffstats
path: root/chrome/browser/ui/views/exclusive_access_bubble_views_context.h
blob: d2300ea5f678a7ebfd51380b3d9fd7f6a98e2a6a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
// 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 CHROME_BROWSER_UI_VIEWS_EXCLUSIVE_ACCESS_BUBBLE_VIEWS_CONTEXT_H_
#define CHROME_BROWSER_UI_VIEWS_EXCLUSIVE_ACCESS_BUBBLE_VIEWS_CONTEXT_H_

#include "ui/gfx/geometry/rect.h"
#include "ui/gfx/native_widget_types.h"

class ExclusiveAccessManager;

namespace ui {
class AcceleratorProvider;
}

namespace views {
class Widget;
}

// Context in which the exclusive access bubble view is initiated.
class ExclusiveAccessBubbleViewsContext {
 public:
  // Returns ExclusiveAccessManager controlling exclusive access for the given
  // webview.
  virtual ExclusiveAccessManager* GetExclusiveAccessManager() = 0;

  // Returns the Widget that hosts the view containing the exclusive access
  // bubble. Not used for the simplified fullscreen UI.
  virtual views::Widget* GetBubbleAssociatedWidget() = 0;

  // Returns the AcceleratorProvider, providing the shortcut key to exit the
  // exclusive access.
  virtual ui::AcceleratorProvider* GetAcceleratorProvider() = 0;

  // Returns the view used to parent the bubble Widget.
  virtual gfx::NativeView GetBubbleParentView() const = 0;

  // Return the current mouse cursor location, offset from the top-left of the
  // parent window.
  virtual gfx::Point GetCursorPointInParent() const = 0;

  // Return the current bounds (not restored bounds) of the parent window.
  virtual gfx::Rect GetClientAreaBoundsInScreen() const = 0;

  // Returns true if immersive mode is enabled.
  virtual bool IsImmersiveModeEnabled() = 0;

  // Returns the bounds of the top level View in screen coordinate system.
  virtual gfx::Rect GetTopContainerBoundsInScreen() = 0;
};

#endif  // CHROME_BROWSER_UI_VIEWS_EXCLUSIVE_ACCESS_BUBBLE_VIEWS_CONTEXT_H_