OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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/synchronization/waitable_event.h" | 5 #include "base/synchronization/waitable_event.h" |
6 #include "ipc/ipc_message_utils.h" | 6 #include "ipc/ipc_message_utils.h" |
7 #include "ppapi/c/dev/ppb_fullscreen_dev.h" | 7 #include "ppapi/c/dev/ppb_fullscreen_dev.h" |
| 8 #include "ppapi/c/pp_var.h" |
8 #include "ppapi/c/ppb_core.h" | 9 #include "ppapi/c/ppb_core.h" |
9 #include "ppapi/c/ppb_url_loader.h" | 10 #include "ppapi/c/ppb_url_loader.h" |
10 #include "ppapi/c/ppp_instance.h" | 11 #include "ppapi/c/ppp_instance.h" |
11 #include "ppapi/proxy/ppapi_messages.h" | 12 #include "ppapi/proxy/ppapi_messages.h" |
12 #include "ppapi/proxy/ppapi_proxy_test.h" | 13 #include "ppapi/proxy/ppapi_proxy_test.h" |
13 | 14 |
14 namespace pp { | 15 namespace pp { |
15 namespace proxy { | 16 namespace proxy { |
16 | 17 |
17 namespace { | 18 namespace { |
(...skipping 292 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
310 | 311 |
311 // TODO(dmichael): Need to mock out a resource Tracker to be able to test | 312 // TODO(dmichael): Need to mock out a resource Tracker to be able to test |
312 // HandleResourceLoad. It also requires | 313 // HandleResourceLoad. It also requires |
313 // PPB_Core.AddRefResource and for PPB_URLLoader to be | 314 // PPB_Core.AddRefResource and for PPB_URLLoader to be |
314 // registered. | 315 // registered. |
315 } | 316 } |
316 | 317 |
317 } // namespace proxy | 318 } // namespace proxy |
318 } // namespace pp | 319 } // namespace pp |
319 | 320 |
OLD | NEW |