Home | History | Annotate | Download | only in win

Lines Matching refs:Core

35 // The core of RdpClient is ref-counted since it services calls and notifies
38 class RdpClient::Core
39 : public base::RefCountedThreadSafe<Core>,
42 Core(
61 friend class base::RefCountedThreadSafe<Core>;
62 virtual ~Core();
83 scoped_refptr<Core> self_;
85 DISALLOW_COPY_AND_ASSIGN(Core);
96 core_ = new Core(caller_task_runner, ui_task_runner, event_handler);
112 RdpClient::Core::Core(
121 void RdpClient::Core::Connect(const SkISize& screen_size,
125 FROM_HERE, base::Bind(&Core::Connect, this, screen_size, terminal_id));
157 void RdpClient::Core::Disconnect() {
159 ui_task_runner_->PostTask(FROM_HERE, base::Bind(&Core::Disconnect, this));
174 void RdpClient::Core::InjectSas() {
176 ui_task_runner_->PostTask(FROM_HERE, base::Bind(&Core::InjectSas, this));
184 void RdpClient::Core::OnConnected() {
191 void RdpClient::Core::OnDisconnected() {
202 RdpClient::Core::~Core() {
207 void RdpClient::Core::NotifyConnected() {
210 FROM_HERE, base::Bind(&Core::NotifyConnected, this));
218 void RdpClient::Core::NotifyClosed() {
221 FROM_HERE, base::Bind(&Core::NotifyClosed, this));