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/shared_impl/ppp_instance_combined.h" | 5 #include "ppapi/shared_impl/ppp_instance_combined.h" |
6 | 6 |
7 namespace ppapi { | 7 namespace ppapi { |
8 | 8 |
9 PPP_Instance_Combined::PPP_Instance_Combined( | 9 PPP_Instance_Combined::PPP_Instance_Combined( |
10 const PPP_Instance_1_0& instance_if) | 10 const PPP_Instance_1_0& instance_if) |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
48 instance_1_1_.DidChangeFocus(instance, has_focus); | 48 instance_1_1_.DidChangeFocus(instance, has_focus); |
49 } | 49 } |
50 | 50 |
51 PP_Bool PPP_Instance_Combined::HandleDocumentLoad(PP_Instance instance, | 51 PP_Bool PPP_Instance_Combined::HandleDocumentLoad(PP_Instance instance, |
52 PP_Resource url_loader) { | 52 PP_Resource url_loader) { |
53 return instance_1_1_.HandleDocumentLoad(instance, url_loader); | 53 return instance_1_1_.HandleDocumentLoad(instance, url_loader); |
54 } | 54 } |
55 | 55 |
56 } // namespace ppapi | 56 } // namespace ppapi |
57 | 57 |
OLD | NEW |