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 #ifndef PPAPI_PROXY_PPP_INSTANCE_PROXY_H_ | 5 #ifndef PPAPI_PROXY_PPP_INSTANCE_PROXY_H_ |
6 #define PPAPI_PROXY_PPP_INSTANCE_PROXY_H_ | 6 #define PPAPI_PROXY_PPP_INSTANCE_PROXY_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 30 matching lines...) Expand all Loading... |
41 private: | 41 private: |
42 // Message handlers. | 42 // Message handlers. |
43 void OnMsgDidCreate(PP_Instance instance, | 43 void OnMsgDidCreate(PP_Instance instance, |
44 const std::vector<std::string>& argn, | 44 const std::vector<std::string>& argn, |
45 const std::vector<std::string>& argv, | 45 const std::vector<std::string>& argv, |
46 PP_Bool* result); | 46 PP_Bool* result); |
47 void OnMsgDidDestroy(PP_Instance instance); | 47 void OnMsgDidDestroy(PP_Instance instance); |
48 void OnMsgDidChangeView(PP_Instance instance, | 48 void OnMsgDidChangeView(PP_Instance instance, |
49 const PP_Rect& position, | 49 const PP_Rect& position, |
50 const PP_Rect& clip, | 50 const PP_Rect& clip, |
51 PP_Bool fullscreen); | 51 PP_Bool fullscreen, |
| 52 PP_Bool flash_fullscreen); |
52 void OnMsgDidChangeFocus(PP_Instance instance, PP_Bool has_focus); | 53 void OnMsgDidChangeFocus(PP_Instance instance, PP_Bool has_focus); |
53 void OnMsgHandleDocumentLoad(PP_Instance instance, | 54 void OnMsgHandleDocumentLoad(PP_Instance instance, |
54 const HostResource& url_loader, | 55 const HostResource& url_loader, |
55 PP_Bool* result); | 56 PP_Bool* result); |
56 scoped_ptr<PPP_Instance_Combined> combined_interface_; | 57 scoped_ptr<PPP_Instance_Combined> combined_interface_; |
57 }; | 58 }; |
58 | 59 |
59 } // namespace proxy | 60 } // namespace proxy |
60 } // namespace ppapi | 61 } // namespace ppapi |
61 | 62 |
62 #endif // PPAPI_PROXY_PPP_INSTANCE_PROXY_H_ | 63 #endif // PPAPI_PROXY_PPP_INSTANCE_PROXY_H_ |
OLD | NEW |