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

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

Issue 11516020: Refactor PPB_Flash GetLocalTimeZoneOffset to the new PPAPI 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 | « content/renderer/pepper/pepper_plugin_delegate_impl.cc ('k') | ppapi/proxy/flash_resource.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_FLASH_RESOURCE_H_ 5 #ifndef PPAPI_PROXY_FLASH_RESOURCE_H_
6 #define PPAPI_PROXY_FLASH_RESOURCE_H_ 6 #define PPAPI_PROXY_FLASH_RESOURCE_H_
7 7
8 #include "ppapi/c/pp_instance.h" 8 #include "ppapi/c/pp_instance.h"
9 #include "ppapi/c/pp_var.h" 9 #include "ppapi/c/pp_var.h"
10 #include "ppapi/c/private/ppb_flash.h" 10 #include "ppapi/c/private/ppb_flash.h"
(...skipping 15 matching lines...) Expand all
26 // Resource override. 26 // Resource override.
27 virtual thunk::PPB_Flash_Functions_API* AsPPB_Flash_Functions_API() OVERRIDE; 27 virtual thunk::PPB_Flash_Functions_API* AsPPB_Flash_Functions_API() OVERRIDE;
28 28
29 // PPB_Flash_Functions_API implementation. 29 // PPB_Flash_Functions_API implementation.
30 virtual PP_Var GetProxyForURL(PP_Instance instance, 30 virtual PP_Var GetProxyForURL(PP_Instance instance,
31 const std::string& url) OVERRIDE; 31 const std::string& url) OVERRIDE;
32 virtual void UpdateActivity(PP_Instance instance) OVERRIDE; 32 virtual void UpdateActivity(PP_Instance instance) OVERRIDE;
33 virtual PP_Bool SetCrashData(PP_Instance instance, 33 virtual PP_Bool SetCrashData(PP_Instance instance,
34 PP_FlashCrashKey key, 34 PP_FlashCrashKey key,
35 PP_Var value) OVERRIDE; 35 PP_Var value) OVERRIDE;
36 virtual double GetLocalTimeZoneOffset(PP_Instance instance,
37 PP_Time t) OVERRIDE;
38
36 private: 39 private:
37 DISALLOW_COPY_AND_ASSIGN(FlashResource); 40 DISALLOW_COPY_AND_ASSIGN(FlashResource);
38 }; 41 };
39 42
40 } // namespace proxy 43 } // namespace proxy
41 } // namespace ppapi 44 } // namespace ppapi
42 45
43 #endif // PPAPI_PROXY_FLASH_RESOURCE_H_ 46 #endif // PPAPI_PROXY_FLASH_RESOURCE_H_
OLDNEW
« no previous file with comments | « content/renderer/pepper/pepper_plugin_delegate_impl.cc ('k') | ppapi/proxy/flash_resource.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698