| 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 #include "base/callback.h" | 5 #include "base/callback.h" |
| 6 #include "base/basictypes.h" | 6 #include "base/macros.h" |
| 7 #include "base/memory/scoped_ptr.h" | 7 #include "base/memory/scoped_ptr.h" |
| 8 #include "base/memory/weak_ptr.h" | 8 #include "base/memory/weak_ptr.h" |
| 9 #include "ppapi/c/pp_instance.h" | 9 #include "ppapi/c/pp_instance.h" |
| 10 #include "ppapi/proxy/connection.h" | 10 #include "ppapi/proxy/connection.h" |
| 11 #include "ppapi/proxy/resource_message_params.h" | 11 #include "ppapi/proxy/resource_message_params.h" |
| 12 | 12 |
| 13 namespace IPC { | 13 namespace IPC { |
| 14 class Message; | 14 class Message; |
| 15 class MessageReplyDeserializer; | 15 class MessageReplyDeserializer; |
| 16 } // namespace | 16 } // namespace |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 | 94 |
| 95 // Reply result of the pending sync message. | 95 // Reply result of the pending sync message. |
| 96 bool reply_result_; | 96 bool reply_result_; |
| 97 | 97 |
| 98 base::WeakPtrFactory<PepperInProcessRouter> weak_factory_; | 98 base::WeakPtrFactory<PepperInProcessRouter> weak_factory_; |
| 99 | 99 |
| 100 DISALLOW_COPY_AND_ASSIGN(PepperInProcessRouter); | 100 DISALLOW_COPY_AND_ASSIGN(PepperInProcessRouter); |
| 101 }; | 101 }; |
| 102 | 102 |
| 103 } // namespace content | 103 } // namespace content |
| OLD | NEW |