/external/chromium_org/ui/aura/ |
window_tree_host.cc | 14 // RootWindowHost, public: 16 RootWindowHost::~RootWindowHost() { 19 void RootWindowHost::ConvertPointToNativeScreen(gfx::Point* point) const { 25 void RootWindowHost::ConvertPointFromNativeScreen(gfx::Point* point) const { 32 // RootWindowHost, protected: 34 RootWindowHost::RootWindowHost()
|
window_tree_host.h | 27 // RootWindowHost bridges between a native window and the embedded RootWindow. 30 class AURA_EXPORT RootWindowHost { 32 virtual ~RootWindowHost(); 34 // Creates a new RootWindowHost. The caller owns the returned value. 35 static RootWindowHost* Create(const gfx::Rect& bounds); 50 // Shows the RootWindowHost. 53 // Hides the RootWindowHost. 59 // Gets/Sets the size of the RootWindowHost. 116 RootWindowHost(); 124 DISALLOW_COPY_AND_ASSIGN(RootWindowHost); [all...] |
root_window_host_ozone.cc | 123 RootWindowHost* RootWindowHost::Create(const gfx::Rect& bounds) { 128 gfx::Size RootWindowHost::GetNativeScreenSize() {
|
root_window.h | 50 class RootWindowHost; 72 RootWindowHost* host; 78 // Returns the RootWindowHost for the specified accelerated widget, or NULL 86 RootWindowHost* host() { 87 return const_cast<RootWindowHost*>( 90 const RootWindowHost* host() const { return host_.get(); } 141 // events are dispatched from GestureRecognizer instead of RootWindowHost. 323 // methods dispatch events from RootWindowHost the coordinates are in terms of 354 scoped_ptr<RootWindowHost> host_;
|
root_window_host_ozone.h | 18 class RootWindowHostOzone : public RootWindowHost, 28 // RootWindowHost Overrides.
|
root_window_host_win.cc | 32 RootWindowHost* RootWindowHost::Create(const gfx::Rect& bounds) { 37 gfx::Size RootWindowHost::GetNativeScreenSize() {
|
root_window_host_win.h | 15 class RootWindowHostWin : public RootWindowHost, public gfx::WindowImpl { 19 // RootWindowHost:
|
root_window_host_x11.h | 36 class AURA_EXPORT RootWindowHostX11 : public RootWindowHost, 47 // RootWindowHost Overrides.
|
remote_root_window_host_win.h | 98 // RootWindowHost implementaton that receives events from a different 102 : public RootWindowHost, 210 // RootWindowHost overrides:
|
root_window.cc | 85 RootWindowHost* CreateHost(RootWindow* root_window, 87 RootWindowHost* host = params.host ? 88 params.host : RootWindowHost::Create(params.initial_bounds); [all...] |
root_window_host_x11.cc | [all...] |
remote_root_window_host_win.cc | 168 window_size_(aura::RootWindowHost::GetNativeScreenSize()) {
|
/external/chromium_org/ash/host/ |
root_window_host_factory.cc | 16 virtual aura::RootWindowHost* CreateRootWindowHost( 18 return aura::RootWindowHost::Create(initial_bounds);
|
root_window_host_factory.h | 12 class RootWindowHost; 23 // Creates a new aura::RootWindowHost. The caller owns the returned value. 24 virtual aura::RootWindowHost* CreateRootWindowHost(
|
root_window_host_factory_win.cc | 20 virtual aura::RootWindowHost* CreateRootWindowHost( 27 return aura::RootWindowHost::Create(initial_bounds);
|
/external/chromium_org/ui/views/widget/desktop_aura/ |
desktop_root_window_host.h | 15 class RootWindowHost; 79 virtual aura::RootWindowHost* AsRootWindowHost() = 0;
|
desktop_root_window_host_x11.h | 38 public aura::RootWindowHost, 82 virtual aura::RootWindowHost* AsRootWindowHost() OVERRIDE; 132 // Overridden from aura::RootWindowHost:
|
x11_whole_screen_move_loop.cc | 32 explicit ScopedCapturer(aura::RootWindowHost* host) 42 aura::RootWindowHost* host_;
|
desktop_root_window_host_win.h | 33 public aura::RootWindowHost, 56 virtual aura::RootWindowHost* AsRootWindowHost() OVERRIDE; 106 // Overridden from aura::RootWindowHost:
|
desktop_root_window_host_win.cc | 207 aura::RootWindowHost* DesktopRootWindowHostWin::AsRootWindowHost() { 430 // DesktopRootWindowHostWin, RootWindowHost implementation: [all...] |
desktop_root_window_host_x11.cc | 213 // TODO(erg): Check whether we *should* be building a RootWindowHost here, or 327 aura::RootWindowHost* DesktopRootWindowHostX11::AsRootWindowHost() { 706 // DesktopRootWindowHostX11, aura::RootWindowHost implementation: [all...] |
/external/chromium_org/ui/aura/test/ |
test_screen.cc | 27 return new TestScreen(gfx::Rect(RootWindowHost::GetNativeScreenSize()));
|
/external/chromium_org/ash/display/ |
display_info.cc | 48 gfx::Rect bounds_in_native(aura::RootWindowHost::GetNativeScreenSize());
|