| 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 <stddef.h> |
| 6 #include <stdint.h> |
| 7 |
| 5 #include "base/synchronization/waitable_event.h" | 8 #include "base/synchronization/waitable_event.h" |
| 6 #include "ipc/ipc_message_utils.h" | 9 #include "ipc/ipc_message_utils.h" |
| 7 #include "ppapi/c/pp_var.h" | 10 #include "ppapi/c/pp_var.h" |
| 8 #include "ppapi/c/ppb_core.h" | 11 #include "ppapi/c/ppb_core.h" |
| 9 #include "ppapi/c/ppb_fullscreen.h" | 12 #include "ppapi/c/ppb_fullscreen.h" |
| 10 #include "ppapi/c/ppb_url_loader.h" | 13 #include "ppapi/c/ppb_url_loader.h" |
| 11 #include "ppapi/c/ppp_instance.h" | 14 #include "ppapi/c/ppp_instance.h" |
| 12 #include "ppapi/c/private/ppb_flash_fullscreen.h" | 15 #include "ppapi/c/private/ppb_flash_fullscreen.h" |
| 13 #include "ppapi/proxy/locking_resource_releaser.h" | 16 #include "ppapi/proxy/locking_resource_releaser.h" |
| 14 #include "ppapi/proxy/ppapi_messages.h" | 17 #include "ppapi/proxy/ppapi_messages.h" |
| (...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 188 // TODO(dmichael): Need to mock out a resource Tracker to be able to test | 191 // TODO(dmichael): Need to mock out a resource Tracker to be able to test |
| 189 // HandleResourceLoad. It also requires | 192 // HandleResourceLoad. It also requires |
| 190 // PPB_Core.AddRefResource and for PPB_URLLoader to be | 193 // PPB_Core.AddRefResource and for PPB_URLLoader to be |
| 191 // registered. | 194 // registered. |
| 192 | 195 |
| 193 host().resource_tracker().DidDeleteInstance(expected_instance); | 196 host().resource_tracker().DidDeleteInstance(expected_instance); |
| 194 } | 197 } |
| 195 | 198 |
| 196 } // namespace proxy | 199 } // namespace proxy |
| 197 } // namespace ppapi | 200 } // namespace ppapi |
| OLD | NEW |