Searched refs:aura (Results 251 - 275 of 951) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/ui/views/widget/
H A Dwindow_reorderer.cc10 #include "ui/aura/window.h"
22 const aura::Window& parent_window,
23 std::map<views::View*, aura::Window*>* hosted_windows) {
24 const std::vector<aura::Window*>& child_windows = parent_window.children();
26 aura::Window* child = child_windows[i];
41 const std::map<views::View*, aura::Window*>& hosts,
61 class WindowReorderer::AssociationObserver : public aura::WindowObserver {
67 void StartObserving(aura::Window* window);
68 void StopObserving(aura::Window* window);
71 // aura
[all...]
/external/chromium_org/ui/wm/core/
H A Dcompound_event_filter.cc9 #include "ui/aura/client/cursor_client.h"
10 #include "ui/aura/env.h"
11 #include "ui/aura/window.h"
12 #include "ui/aura/window_delegate.h"
13 #include "ui/aura/window_event_dispatcher.h"
14 #include "ui/aura/window_tracker.h"
102 void CompoundEventFilter::UpdateCursor(aura::Window* target,
106 aura::Window* root_window = target->GetRootWindow();
107 aura::client::DragDropClient* drag_drop_client =
108 aura
[all...]
H A Dinput_method_event_filter_unittest.cc8 #include "ui/aura/client/aura_constants.h"
9 #include "ui/aura/test/aura_test_base.h"
10 #include "ui/aura/test/test_windows.h"
11 #include "ui/aura/window_event_dispatcher.h"
34 explicit TestTextInputClient(aura::Window* window) : window_(window) {}
36 virtual aura::Window* GetAttachedWindow() const OVERRIDE { return window_; }
39 aura::Window* window_;
44 class InputMethodEventFilterTest : public aura::test::AuraTestBase {
51 aura::test::AuraTestBase::SetUp();
61 test_window_.reset(aura
[all...]
H A Dnested_accelerator_controller_unittest.cc10 #include "ui/aura/test/aura_test_base.h"
11 #include "ui/aura/test/test_windows.h"
12 #include "ui/aura/window.h"
13 #include "ui/aura/window_event_dispatcher.h"
77 void DispatchKeyReleaseA(aura::Window* root_window) {
83 aura::WindowTreeHost* host = root_window->GetHost();
90 aura::WindowTreeHost* host = root_window->GetHost();
125 class NestedAcceleratorTest : public aura::test::AuraTestBase {
135 aura::client::SetDispatcherClient(root_window(),
140 aura
[all...]
H A Dcompound_event_filter_unittest.cc7 #include "ui/aura/client/cursor_client.h"
8 #include "ui/aura/env.h"
9 #include "ui/aura/test/aura_test_base.h"
10 #include "ui/aura/test/test_cursor_client.h"
11 #include "ui/aura/test/test_windows.h"
12 #include "ui/aura/window.h"
13 #include "ui/aura/window_event_dispatcher.h"
51 typedef aura::test::AuraTestBase CompoundEventFilterTest;
57 aura::Env::GetInstance()->AddPreTargetHandler(compound_filter.get());
58 aura
[all...]
/external/chromium_org/ash/test/
H A Dash_test_base.h32 namespace aura { namespace
36 } // namespace aura
66 aura::Window* CurrentContext();
68 // Versions of the functions in aura::test:: that go through our shell
70 aura::Window* CreateTestWindowInShellWithId(int id);
71 aura::Window* CreateTestWindowInShellWithBounds(const gfx::Rect& bounds);
72 aura::Window* CreateTestWindowInShell(SkColor color,
75 aura::Window* CreateTestWindowInShellWithDelegate(
76 aura::WindowDelegate* delegate,
79 aura
[all...]
H A Dash_test_helper.cc19 #include "ui/aura/env.h"
20 #include "ui/aura/input_state_lookup.h"
21 #include "ui/aura/test/env_test_helper.h"
22 #include "ui/aura/test/event_generator_delegate_aura.h"
40 #include "ui/aura/window_tree_host_x11.h"
53 aura::test::SetUseOverrideRedirectWindowByDefault(true);
55 aura::test::InitializeAuraEventGeneratorDelegate();
95 aura::test::EnvTestHelper(aura::Env::GetInstance()).SetInputStateLookup(
96 scoped_ptr<aura
[all...]
H A Dtest_shelf_delegate.h13 #include "ui/aura/window_observer.h"
23 class TestShelfDelegate : public ShelfDelegate, public aura::WindowObserver {
28 void AddShelfItem(aura::Window* window);
29 void AddShelfItem(aura::Window* window, ShelfItemStatus status);
30 void RemoveShelfItemForWindow(aura::Window* window);
35 virtual void OnWindowDestroying(aura::Window* window) OVERRIDE;
/external/chromium_org/ash/wm/
H A Dmru_window_tracker_unittest.cc12 #include "ui/aura/test/test_window_delegate.h"
13 #include "ui/aura/window.h"
23 aura::Window* CreateWindow() {
37 scoped_ptr<aura::Window> w1(CreateWindow());
38 scoped_ptr<aura::Window> w2(CreateWindow());
39 scoped_ptr<aura::Window> w3(CreateWindow());
54 scoped_ptr<aura::Window> w1(CreateWindow());
55 scoped_ptr<aura::Window> w2(CreateWindow());
56 scoped_ptr<aura::Window> w3(CreateWindow());
57 scoped_ptr<aura
[all...]
H A Dvideo_detector.cc10 #include "ui/aura/env.h"
11 #include "ui/aura/window.h"
12 #include "ui/aura/window_event_dispatcher.h"
66 aura::Env::GetInstance()->AddObserver(this);
72 aura::Env::GetInstance()->RemoveObserver(this);
83 void VideoDetector::OnWindowInitialized(aura::Window* window) {
88 aura::Window* window,
102 void VideoDetector::OnWindowDestroyed(aura::Window* window) {
113 void VideoDetector::MaybeNotifyObservers(aura::Window* window,
134 std::vector<aura
[all...]
H A Dwindow_cycle_list.cc12 #include "ui/aura/window.h"
17 aura::Window* GetWindowBelow(aura::Window* window) {
18 aura::Window* parent = window->parent();
21 aura::Window::Windows::const_iterator iter =
32 class ScopedShowWindow : public aura::WindowObserver {
38 void Show(aura::Window* window);
43 aura::Window* window() { return window_; }
45 // aura::WindowObserver:
46 virtual void OnWillRemoveWindow(aura
[all...]
/external/chromium_org/chrome/browser/ui/ash/launcher/
H A Dbrowser_status_monitor.h18 #include "ui/aura/window_observer.h"
22 namespace aura { namespace
28 } // namespace aura
35 class BrowserStatusMonitor : public aura::client::ActivationChangeObserver,
36 public aura::WindowObserver,
58 // aura::client::ActivationChangeObserver overrides:
59 virtual void OnWindowActivated(aura::Window* gained_active,
60 aura::Window* lost_active) OVERRIDE;
62 // aura::WindowObserver overrides:
63 virtual void OnWindowDestroyed(aura
[all...]
/external/chromium_org/mojo/services/window_manager/
H A Dwindow_manager_app.h11 #include "mojo/aura/window_tree_host_mojo.h"
12 #include "mojo/aura/window_tree_host_mojo_delegate.h"
22 #include "ui/aura/client/focus_change_observer.h"
26 namespace aura { namespace
53 // This object maintains an aura::WindowTreeHost containing a hierarchy of
54 // aura::Windows. Window manager functionality (e.g. focus, activation,
55 // modality, etc.) are implemented using aura core window manager components.
63 public aura::client::FocusChangeObserver,
64 public aura::client::ActivationChangeObserver {
70 static View* GetViewForWindow(aura
[all...]
/external/chromium_org/ui/aura/
H A Dwindow_property.h9 #include "ui/aura/aura_export.h"
10 #include "ui/aura/window.h"
18 // #include "ui/aura/window_property.h"
46 namespace aura { namespace
106 } // namespace aura
110 template EXPORT void aura::Window::SetProperty( \
111 const aura::WindowProperty<T >*, T); \
112 template EXPORT T aura::Window::GetProperty( \
113 const aura::WindowProperty<T >*) const; \
114 template EXPORT void aura
[all...]
/external/chromium_org/ash/display/
H A Dmouse_cursor_event_filter.h16 namespace aura { namespace
46 void ShowSharedEdgeIndicator(aura::Window* from);
74 static void MoveCursorTo(aura::Window* root,
96 void GetSrcAndDstRootWindows(aura::Window** src_window,
97 aura::Window** dst_window);
101 bool WarpMouseCursorIfNecessaryForTest(aura::Window* target_root,
119 aura::Window* drag_source_root_;
/external/chromium_org/ash/
H A Dscreen_util.cc15 #include "ui/aura/client/screen_position_client.h"
16 #include "ui/aura/window_event_dispatcher.h"
34 gfx::Rect ScreenUtil::GetMaximizedWindowBoundsInParent(aura::Window* window) {
42 gfx::Rect ScreenUtil::GetDisplayBoundsInParent(aura::Window* window) {
49 gfx::Rect ScreenUtil::GetDisplayWorkAreaBoundsInParent(aura::Window* window) {
56 gfx::Rect ScreenUtil::ConvertRectToScreen(aura::Window* window,
59 aura::client::GetScreenPositionClient(window->GetRootWindow())->
65 gfx::Rect ScreenUtil::ConvertRectFromScreen(aura::Window* window,
68 aura::client::GetScreenPositionClient(window->GetRootWindow())->
/external/chromium_org/ui/keyboard/
H A Dkeyboard_controller_proxy.h10 #include "ui/aura/window_observer.h"
14 namespace aura { namespace
36 class KEYBOARD_EXPORT KeyboardControllerProxy : public aura::WindowObserver {
57 virtual aura::Window* GetKeyboardWindow();
75 virtual void ShowKeyboardContainer(aura::Window* container);
80 virtual void HideKeyboardContainer(aura::Window* container);
115 // aura::WindowObserver overrides:
116 virtual void OnWindowBoundsChanged(aura::Window* window,
119 virtual void OnWindowDestroyed(aura::Window* window) OVERRIDE;
/external/chromium_org/ui/views/widget/desktop_aura/
H A Dx11_topmost_window_finder.cc9 #include "ui/aura/client/screen_position_client.h"
10 #include "ui/aura/window.h"
21 aura::Window* X11TopmostWindowFinder::FindLocalProcessWindowAt(
23 const std::set<aura::Window*>& ignore) {
27 std::vector<aura::Window*> local_process_windows =
53 aura::Window* window =
71 aura::Window* window) {
90 aura::client::ScreenPositionClient* screen_position_client =
91 aura::client::GetScreenPositionClient(window->GetRootWindow());
/external/chromium_org/athena/wm/
H A Dwindow_manager_impl.cc19 #include "ui/aura/layout_manager.h"
20 #include "ui/aura/window.h"
35 void SetWindowState(aura::Window* window,
44 class AthenaContainerLayoutManager : public aura::LayoutManager {
50 // aura::LayoutManager:
52 virtual void OnWindowAddedToLayout(aura::Window* child) OVERRIDE;
53 virtual void OnWillRemoveWindowFromLayout(aura::Window* child) OVERRIDE;
54 virtual void OnWindowRemovedFromLayout(aura::Window* child) OVERRIDE;
55 virtual void OnChildWindowVisibilityChanged(aura::Window* child,
57 virtual void SetChildBounds(aura
[all...]
/external/chromium_org/ash/magnifier/
H A Dpartial_magnification_controller.cc9 #include "ui/aura/window.h"
10 #include "ui/aura/window_event_dispatcher.h"
11 #include "ui/aura/window_property.h"
12 #include "ui/aura/window_tree_host.h"
82 aura::Window* target = static_cast<aura::Window*>(event->target());
83 aura::Window* current_root = target->GetRootWindow();
97 // PartialMagnificationController: aura::WindowObserver implementation
100 aura::Window* window) {
103 aura
[all...]
/external/chromium_org/ash/drag_drop/
H A Ddrag_drop_controller.h11 #include "ui/aura/window_observer.h"
33 : public aura::client::DragDropClient,
36 public aura::WindowObserver {
45 // Overridden from aura::client::DragDropClient:
48 aura::Window* root_window,
49 aura::Window* source_window,
53 virtual void DragUpdate(aura::Window* target,
55 virtual void Drop(aura::Window* target,
66 // Overridden from aura::WindowObserver.
67 virtual void OnWindowDestroyed(aura
[all...]
/external/chromium_org/content/browser/media/capture/
H A Ddesktop_capture_device_aura_unittest.cc13 #include "ui/aura/client/window_tree_client.h"
14 #include "ui/aura/test/aura_test_helper.h"
15 #include "ui/aura/test/test_window_delegate.h"
16 #include "ui/aura/window.h"
68 helper_.reset(new aura::test::AuraTestHelper(&message_loop_));
76 window_delegate_.reset(new aura::test::TestWindowDelegate());
77 desktop_window_.reset(new aura::Window(window_delegate_.get()));
78 desktop_window_->Init(aura::WINDOW_LAYER_TEXTURED);
80 aura::client::ParentWindowWithContext(
94 aura
[all...]
/external/chromium_org/ash/shelf/
H A Dshelf_widget.h15 namespace aura { namespace
30 ShelfWidget(aura::Window* shelf_container,
31 aura::Window* status_container,
75 aura::Window* window_container() { return window_container_; }
113 aura::Window* window_container_;
/external/chromium_org/chrome/browser/chromeos/ui/
H A Dfocus_ring_layer.h13 namespace aura { namespace
40 void Set(aura::Window* root_window, const gfx::Rect& bounds);
43 aura::Window* root_window() { return root_window_; }
49 void CreateOrUpdateLayer(aura::Window* root_window, const char* layer_name);
63 aura::Window* root_window_;
/external/chromium_org/chrome/browser/ui/ash/multi_user/
H A Dmulti_user_window_manager_stub.h25 aura::Window* window, const std::string& user_id) OVERRIDE;
27 aura::Window* window) const OVERRIDE;
29 aura::Window* window, const std::string& user_id) OVERRIDE;
34 aura::Window* window,
37 aura::Window* window) const OVERRIDE;

Completed in 469 milliseconds

<<11121314151617181920>>