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