Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(123)

Side by Side Diff: ppapi/proxy/ppp_instance_proxy.h

Issue 7826017: Add PPB_Fullscreen;0.5. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « ppapi/proxy/ppb_instance_proxy.cc ('k') | ppapi/proxy/ppp_instance_proxy.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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_
OLDNEW
« no previous file with comments | « ppapi/proxy/ppb_instance_proxy.cc ('k') | ppapi/proxy/ppp_instance_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698