HomeSort by relevance Sort by last modified time
    Searched refs:HostWindow (Results 1 - 25 of 31) sorted by null

1 2

  /external/chromium_org/remoting/host/
host_window.h 18 class HostWindow : public base::NonThreadSafe {
20 virtual ~HostWindow() {}
23 static scoped_ptr<HostWindow> CreateContinueWindow();
26 static scoped_ptr<HostWindow> CreateDisconnectWindow();
34 HostWindow() {}
38 // of |HostWindow| to a different thread.
41 DISALLOW_COPY_AND_ASSIGN(HostWindow);
host_window_proxy.h 20 // Takes an instance of |HostWindow| and runs it on the |ui_task_runner| thread.
21 class HostWindowProxy : public HostWindow {
26 scoped_ptr<HostWindow> host_window);
29 // HostWindow overrides.
it2me_desktop_environment.h 14 class HostWindow;
33 scoped_ptr<HostWindow> continue_window_;
36 scoped_ptr<HostWindow> disconnect_window_;
continue_window.h 15 class ContinueWindow : public HostWindow {
19 // HostWindow override.
continue_window_linux.cc 117 scoped_ptr<HostWindow> HostWindow::CreateContinueWindow() {
118 return scoped_ptr<HostWindow>(new ContinueWindowGtk());
it2me_desktop_environment.cc 56 continue_window_ = HostWindow::CreateContinueWindow();
63 disconnect_window_ = HostWindow::CreateDisconnectWindow();
me2me_desktop_environment.h 13 class HostWindow;
49 scoped_ptr<HostWindow> disconnect_window_;
continue_window_win.cc 131 scoped_ptr<HostWindow> HostWindow::CreateContinueWindow() {
132 return scoped_ptr<HostWindow>(new ContinueWindowWin());
host_window_proxy.cc 16 // Runs an instance of |HostWindow| on the |ui_task_runner_| thread.
23 scoped_ptr<HostWindow> host_window);
60 // The wrapped |HostWindow| instance running on the |ui_task_runner_| thread.
61 scoped_ptr<HostWindow> host_window_;
72 scoped_ptr<HostWindow> host_window) {
97 scoped_ptr<HostWindow> host_window)
disconnect_window_linux.cc 22 class DisconnectWindowGtk : public HostWindow {
27 // HostWindow overrides.
291 scoped_ptr<HostWindow> HostWindow::CreateDisconnectWindow() {
292 return scoped_ptr<HostWindow>(new DisconnectWindowGtk());
disconnect_window_win.cc 35 class DisconnectWindowWin : public HostWindow {
40 // HostWindow overrides.
396 scoped_ptr<HostWindow> HostWindow::CreateDisconnectWindow() {
397 return scoped_ptr<HostWindow>(new DisconnectWindowWin());
me2me_desktop_environment.cc 113 disconnect_window_ = HostWindow::CreateDisconnectWindow();
  /external/chromium_org/third_party/WebKit/Source/platform/
HostWindow.h 37 class PLATFORM_EXPORT HostWindow {
38 WTF_MAKE_NONCOPYABLE(HostWindow); WTF_MAKE_FAST_ALLOCATED;
40 HostWindow() { }
41 virtual ~HostWindow() { }
PlatformScreen.cpp 34 #include "platform/HostWindow.h"
41 static HostWindow* toHostWindow(Widget* widget)
48 return root->hostWindow();
53 HostWindow* hostWindow = toHostWindow(widget);
54 if (!hostWindow)
56 return hostWindow->screenInfo().depth;
61 HostWindow* hostWindow = toHostWindow(widget);
62 if (!hostWindow)
    [all...]
Widget.h 41 class HostWindow;
94 virtual HostWindow* hostWindow() const { ASSERT_NOT_REACHED(); return 0; }
  /external/chromium_org/third_party/WebKit/Source/web/
PopupContainerClient.h 34 #include "platform/HostWindow.h"
39 class PopupContainerClient : public HostWindow {
PopupContainer.h 60 virtual HostWindow* hostWindow() const OVERRIDE;
PopupListBox.h 98 virtual HostWindow* hostWindow() const OVERRIDE;
PopupContainer.cpp 535 if (HostWindow* h = hostWindow())
539 HostWindow* PopupContainer::hostWindow() const
  /external/chromium_org/third_party/WebKit/Source/core/page/
Chrome.h 28 #include "platform/HostWindow.h"
55 class Chrome FINAL : public HostWindow {
63 // HostWindow methods.
  /external/chromium_org/third_party/WebKit/Source/platform/scroll/
ScrollableArea.h 39 class HostWindow;
64 virtual HostWindow* hostWindow() const { return 0; };
ScrollView.cpp 31 #include "platform/HostWindow.h"
539 HostWindow* window = hostWindow();
569 hostWindow()->invalidateContentsForSlowScroll(updateRect);
632 HostWindow* window = hostWindow();
788 if (HostWindow* window = hostWindow())
    [all...]
ScrollView.h 60 virtual HostWindow* hostWindow() const = 0;
ScrollableArea.cpp 35 #include "platform/HostWindow.h"
422 if (HostWindow* window = hostWindow()) {
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderLayerScrollableArea.h 76 virtual HostWindow* hostWindow() const OVERRIDE;

Completed in 4416 milliseconds

1 2