| 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 "ppapi/host/ppapi_host.h" | 5 #include "ppapi/host/ppapi_host.h" |
| 6 | 6 |
| 7 #include "base/logging.h" | 7 #include "base/logging.h" |
| 8 #include "ppapi/c/pp_errors.h" | 8 #include "ppapi/c/pp_errors.h" |
| 9 #include "ppapi/host/host_factory.h" | 9 #include "ppapi/host/host_factory.h" |
| 10 #include "ppapi/host/host_message_context.h" | 10 #include "ppapi/host/host_message_context.h" |
| (...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 170 | 170 |
| 171 void PpapiHost::OnHostMsgResourceDestroyed(PP_Resource resource) { | 171 void PpapiHost::OnHostMsgResourceDestroyed(PP_Resource resource) { |
| 172 ResourceMap::iterator found = resources_.find(resource); | 172 ResourceMap::iterator found = resources_.find(resource); |
| 173 if (found == resources_.end()) { | 173 if (found == resources_.end()) { |
| 174 NOTREACHED(); | 174 NOTREACHED(); |
| 175 return; | 175 return; |
| 176 } | 176 } |
| 177 resources_.erase(found); | 177 resources_.erase(found); |
| 178 } | 178 } |
| 179 | 179 |
| 180 ResourceHost* PpapiHost::GetResourceHost(PP_Resource resource) { | 180 ResourceHost* PpapiHost::GetResourceHost(PP_Resource resource) const { |
| 181 ResourceMap::iterator found = resources_.find(resource); | 181 ResourceMap::const_iterator found = resources_.find(resource); |
| 182 return found == resources_.end() ? NULL : found->second.get(); | 182 return found == resources_.end() ? NULL : found->second.get(); |
| 183 } | 183 } |
| 184 | 184 |
| 185 } // namespace host | 185 } // namespace host |
| 186 } // namespace ppapi | 186 } // namespace ppapi |
| OLD | NEW |