| 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 // TODO(ajwong): We need to come up with a better description of the | 5 // TODO(ajwong): We need to come up with a better description of the |
| 6 // responsibilities for each thread. | 6 // responsibilities for each thread. |
| 7 | 7 |
| 8 #ifndef REMOTING_CLIENT_PLUGIN_CHROMOTING_INSTANCE_H_ | 8 #ifndef REMOTING_CLIENT_PLUGIN_CHROMOTING_INSTANCE_H_ |
| 9 #define REMOTING_CLIENT_PLUGIN_CHROMOTING_INSTANCE_H_ | 9 #define REMOTING_CLIENT_PLUGIN_CHROMOTING_INSTANCE_H_ |
| 10 | 10 |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 #undef PostMessage | 24 #undef PostMessage |
| 25 #endif | 25 #endif |
| 26 | 26 |
| 27 #include "ppapi/cpp/private/instance_private.h" | 27 #include "ppapi/cpp/private/instance_private.h" |
| 28 #include "remoting/base/scoped_thread_proxy.h" | 28 #include "remoting/base/scoped_thread_proxy.h" |
| 29 #include "remoting/client/client_context.h" | 29 #include "remoting/client/client_context.h" |
| 30 #include "remoting/client/plugin/pepper_plugin_thread_delegate.h" | 30 #include "remoting/client/plugin/pepper_plugin_thread_delegate.h" |
| 31 #include "remoting/protocol/connection_to_host.h" | 31 #include "remoting/protocol/connection_to_host.h" |
| 32 | 32 |
| 33 namespace base { | 33 namespace base { |
| 34 class DictionaryBase; | 34 class DictionaryValue; |
| 35 } // namespace base | 35 } // namespace base |
| 36 | 36 |
| 37 namespace pp { | 37 namespace pp { |
| 38 class InputEvent; | 38 class InputEvent; |
| 39 class Module; | 39 class Module; |
| 40 } // namespace pp | 40 } // namespace pp |
| 41 | 41 |
| 42 namespace remoting { | 42 namespace remoting { |
| 43 | 43 |
| 44 namespace protocol { | 44 namespace protocol { |
| (...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 195 pp::Var instance_object_; | 195 pp::Var instance_object_; |
| 196 | 196 |
| 197 scoped_ptr<ScopedThreadProxy> thread_proxy_; | 197 scoped_ptr<ScopedThreadProxy> thread_proxy_; |
| 198 | 198 |
| 199 DISALLOW_COPY_AND_ASSIGN(ChromotingInstance); | 199 DISALLOW_COPY_AND_ASSIGN(ChromotingInstance); |
| 200 }; | 200 }; |
| 201 | 201 |
| 202 } // namespace remoting | 202 } // namespace remoting |
| 203 | 203 |
| 204 #endif // REMOTING_CLIENT_PLUGIN_CHROMOTING_INSTANCE_H_ | 204 #endif // REMOTING_CLIENT_PLUGIN_CHROMOTING_INSTANCE_H_ |
| OLD | NEW |