| 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 PPAPI_HOST_RESOURCE_HOST_H_ | 5 #ifndef PPAPI_HOST_RESOURCE_HOST_H_ |
| 6 #define PPAPI_HOST_RESOURCE_HOST_H_ | 6 #define PPAPI_HOST_RESOURCE_HOST_H_ |
| 7 | 7 |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/macros.h" |
| 11 #include "base/memory/ref_counted.h" | 11 #include "base/memory/ref_counted.h" |
| 12 #include "ppapi/c/pp_resource.h" | 12 #include "ppapi/c/pp_resource.h" |
| 13 #include "ppapi/host/ppapi_host_export.h" | 13 #include "ppapi/host/ppapi_host_export.h" |
| 14 #include "ppapi/host/resource_message_handler.h" | 14 #include "ppapi/host/resource_message_handler.h" |
| 15 #include "ppapi/shared_impl/host_resource.h" | 15 #include "ppapi/shared_impl/host_resource.h" |
| 16 | 16 |
| 17 namespace IPC { | 17 namespace IPC { |
| 18 class Message; | 18 class Message; |
| 19 } | 19 } |
| 20 | 20 |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 87 // messages to. | 87 // messages to. |
| 88 std::vector<scoped_refptr<ResourceMessageFilter> > message_filters_; | 88 std::vector<scoped_refptr<ResourceMessageFilter> > message_filters_; |
| 89 | 89 |
| 90 DISALLOW_COPY_AND_ASSIGN(ResourceHost); | 90 DISALLOW_COPY_AND_ASSIGN(ResourceHost); |
| 91 }; | 91 }; |
| 92 | 92 |
| 93 } // namespace host | 93 } // namespace host |
| 94 } // namespace ppapi | 94 } // namespace ppapi |
| 95 | 95 |
| 96 #endif // PPAPI_HOST_RESOURCE_HOST_H_ | 96 #endif // PPAPI_HOST_RESOURCE_HOST_H_ |
| OLD | NEW |