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

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

Issue 11421066: Refactor PPB_Flash_Fullscreen to the new resource model. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 8 years 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_flash_proxy.cc ('k') | ppapi/proxy/ppb_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) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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_PPB_INSTANCE_PROXY_H_ 5 #ifndef PPAPI_PROXY_PPB_INSTANCE_PROXY_H_
6 #define PPAPI_PROXY_PPB_INSTANCE_PROXY_H_ 6 #define PPAPI_PROXY_PPB_INSTANCE_PROXY_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "ppapi/c/pp_instance.h" 10 #include "ppapi/c/pp_instance.h"
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 static const Info* GetInfoPrivate(); 43 static const Info* GetInfoPrivate();
44 44
45 // InterfaceProxy implementation. 45 // InterfaceProxy implementation.
46 virtual bool OnMessageReceived(const IPC::Message& msg); 46 virtual bool OnMessageReceived(const IPC::Message& msg);
47 47
48 // PPB_Instance_API implementation. 48 // PPB_Instance_API implementation.
49 virtual PP_Bool BindGraphics(PP_Instance instance, 49 virtual PP_Bool BindGraphics(PP_Instance instance,
50 PP_Resource device) OVERRIDE; 50 PP_Resource device) OVERRIDE;
51 virtual PP_Bool IsFullFrame(PP_Instance instance) OVERRIDE; 51 virtual PP_Bool IsFullFrame(PP_Instance instance) OVERRIDE;
52 virtual const ViewData* GetViewData(PP_Instance instance) OVERRIDE; 52 virtual const ViewData* GetViewData(PP_Instance instance) OVERRIDE;
53 virtual PP_Bool FlashIsFullscreen(PP_Instance instance) OVERRIDE;
53 virtual PP_Var GetWindowObject(PP_Instance instance) OVERRIDE; 54 virtual PP_Var GetWindowObject(PP_Instance instance) OVERRIDE;
54 virtual PP_Var GetOwnerElementObject(PP_Instance instance) OVERRIDE; 55 virtual PP_Var GetOwnerElementObject(PP_Instance instance) OVERRIDE;
55 virtual PP_Var ExecuteScript(PP_Instance instance, 56 virtual PP_Var ExecuteScript(PP_Instance instance,
56 PP_Var script, 57 PP_Var script,
57 PP_Var* exception) OVERRIDE; 58 PP_Var* exception) OVERRIDE;
58 virtual uint32_t GetAudioHardwareOutputSampleRate(PP_Instance instance) 59 virtual uint32_t GetAudioHardwareOutputSampleRate(PP_Instance instance)
59 OVERRIDE; 60 OVERRIDE;
60 virtual uint32_t GetAudioHardwareOutputBufferSize(PP_Instance instance) 61 virtual uint32_t GetAudioHardwareOutputBufferSize(PP_Instance instance)
61 OVERRIDE; 62 OVERRIDE;
62 virtual PP_Var GetDefaultCharSet(PP_Instance instance) OVERRIDE; 63 virtual PP_Var GetDefaultCharSet(PP_Instance instance) OVERRIDE;
(...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after
273 // Other helpers. 274 // Other helpers.
274 void CancelAnyPendingRequestSurroundingText(PP_Instance instance); 275 void CancelAnyPendingRequestSurroundingText(PP_Instance instance);
275 276
276 ProxyCompletionCallbackFactory<PPB_Instance_Proxy> callback_factory_; 277 ProxyCompletionCallbackFactory<PPB_Instance_Proxy> callback_factory_;
277 }; 278 };
278 279
279 } // namespace proxy 280 } // namespace proxy
280 } // namespace ppapi 281 } // namespace ppapi
281 282
282 #endif // PPAPI_PROXY_PPB_INSTANCE_PROXY_H_ 283 #endif // PPAPI_PROXY_PPB_INSTANCE_PROXY_H_
OLDNEW
« no previous file with comments | « ppapi/proxy/ppb_flash_proxy.cc ('k') | ppapi/proxy/ppb_instance_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698