| 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 "ppapi/native_client/src/shared/ppapi_proxy/ppp_instance_combined.h" | 5 #include "ppapi/native_client/src/shared/ppapi_proxy/ppp_instance_combined.h" |
| 6 | 6 |
| 7 #include <stdlib.h> | 7 #include <stdlib.h> |
| 8 | 8 |
| 9 namespace ppapi_proxy { | 9 namespace ppapi_proxy { |
| 10 | 10 |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 instance_1_1_.DidChangeFocus(instance, has_focus); | 54 instance_1_1_.DidChangeFocus(instance, has_focus); |
| 55 } | 55 } |
| 56 | 56 |
| 57 PP_Bool PPP_Instance_Combined::HandleDocumentLoad(PP_Instance instance, | 57 PP_Bool PPP_Instance_Combined::HandleDocumentLoad(PP_Instance instance, |
| 58 PP_Resource url_loader) { | 58 PP_Resource url_loader) { |
| 59 return instance_1_1_.HandleDocumentLoad(instance, url_loader); | 59 return instance_1_1_.HandleDocumentLoad(instance, url_loader); |
| 60 } | 60 } |
| 61 | 61 |
| 62 } // namespace ppapi_proxy | 62 } // namespace ppapi_proxy |
| 63 | 63 |
| OLD | NEW |