OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef REMOTING_CLIENT_PLUGIN_CHROMOTING_INSTANCE_H_ | 5 #ifndef REMOTING_CLIENT_PLUGIN_CHROMOTING_INSTANCE_H_ |
6 #define REMOTING_CLIENT_PLUGIN_CHROMOTING_INSTANCE_H_ | 6 #define REMOTING_CLIENT_PLUGIN_CHROMOTING_INSTANCE_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/gtest_prod_util.h" | 10 #include "base/gtest_prod_util.h" |
(...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
195 void HandleConnect(const base::DictionaryValue& data); | 195 void HandleConnect(const base::DictionaryValue& data); |
196 void HandleDisconnect(const base::DictionaryValue& data); | 196 void HandleDisconnect(const base::DictionaryValue& data); |
197 void HandleOnIncomingIq(const base::DictionaryValue& data); | 197 void HandleOnIncomingIq(const base::DictionaryValue& data); |
198 void HandleReleaseAllKeys(const base::DictionaryValue& data); | 198 void HandleReleaseAllKeys(const base::DictionaryValue& data); |
199 void HandleInjectKeyEvent(const base::DictionaryValue& data); | 199 void HandleInjectKeyEvent(const base::DictionaryValue& data); |
200 void HandleRemapKey(const base::DictionaryValue& data); | 200 void HandleRemapKey(const base::DictionaryValue& data); |
201 void HandleTrapKey(const base::DictionaryValue& data); | 201 void HandleTrapKey(const base::DictionaryValue& data); |
202 void HandleSendClipboardItem(const base::DictionaryValue& data); | 202 void HandleSendClipboardItem(const base::DictionaryValue& data); |
203 void HandleNotifyClientResolution(const base::DictionaryValue& data); | 203 void HandleNotifyClientResolution(const base::DictionaryValue& data); |
204 void HandlePauseVideo(const base::DictionaryValue& data); | 204 void HandlePauseVideo(const base::DictionaryValue& data); |
| 205 void HandleVideoControl(const base::DictionaryValue& data); |
205 void HandlePauseAudio(const base::DictionaryValue& data); | 206 void HandlePauseAudio(const base::DictionaryValue& data); |
206 void HandleOnPinFetched(const base::DictionaryValue& data); | 207 void HandleOnPinFetched(const base::DictionaryValue& data); |
207 void HandleOnThirdPartyTokenFetched(const base::DictionaryValue& data); | 208 void HandleOnThirdPartyTokenFetched(const base::DictionaryValue& data); |
208 void HandleRequestPairing(const base::DictionaryValue& data); | 209 void HandleRequestPairing(const base::DictionaryValue& data); |
209 void HandleExtensionMessage(const base::DictionaryValue& data); | 210 void HandleExtensionMessage(const base::DictionaryValue& data); |
210 void HandleAllowMouseLockMessage(); | 211 void HandleAllowMouseLockMessage(); |
211 void HandleEnableMediaSourceRendering(); | 212 void HandleEnableMediaSourceRendering(); |
212 void HandleSendMouseInputWhenUnfocused(); | 213 void HandleSendMouseInputWhenUnfocused(); |
213 | 214 |
214 // Helper method called from Connect() to connect with parsed config. | 215 // Helper method called from Connect() to connect with parsed config. |
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
297 | 298 |
298 // Weak reference to this instance, used for global logging and task posting. | 299 // Weak reference to this instance, used for global logging and task posting. |
299 base::WeakPtrFactory<ChromotingInstance> weak_factory_; | 300 base::WeakPtrFactory<ChromotingInstance> weak_factory_; |
300 | 301 |
301 DISALLOW_COPY_AND_ASSIGN(ChromotingInstance); | 302 DISALLOW_COPY_AND_ASSIGN(ChromotingInstance); |
302 }; | 303 }; |
303 | 304 |
304 } // namespace remoting | 305 } // namespace remoting |
305 | 306 |
306 #endif // REMOTING_CLIENT_PLUGIN_CHROMOTING_INSTANCE_H_ | 307 #endif // REMOTING_CLIENT_PLUGIN_CHROMOTING_INSTANCE_H_ |
OLD | NEW |